COMPROG:UNIT#3:ITERATIVE CONTROL STATEMENTS

COMPROG:UNIT#3:ITERATIVE CONTROL STATEMENTS

3rd Grade

8 Qs

quiz-placeholder

Similar activities

A Special Day - M-STEP Practice

A Special Day - M-STEP Practice

3rd Grade

12 Qs

season and weather

season and weather

1st - 5th Grade

10 Qs

sleep and the brain

sleep and the brain

1st - 5th Grade

10 Qs

EcoNook

EcoNook

1st - 5th Grade

10 Qs

TLE THIRD PERIODICAL TEST

TLE THIRD PERIODICAL TEST

1st - 5th Grade

10 Qs

Teens 5 - Units 1 and 2

Teens 5 - Units 1 and 2

1st - 5th Grade

10 Qs

Compare/Contrast Day 9

Compare/Contrast Day 9

1st Grade - University

11 Qs

Math Test Practice

Math Test Practice

3rd Grade

10 Qs

COMPROG:UNIT#3:ITERATIVE CONTROL STATEMENTS

COMPROG:UNIT#3:ITERATIVE CONTROL STATEMENTS

Assessment

Quiz

Others

3rd Grade

Medium

Created by

dasdqaw asdasesda

Used 2+ times

FREE Resource

8 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 1 pt

are used when the program needs to perform looping operations until the given condition is true. Control comes out of the loop statements once condition becoming false

2.

MULTIPLE SELECT QUESTION

45 sec • 1 pt


There are 3 types of iterative control statements in C language. They are,

for statement

while statement

while do statement

do while statement

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

There are 2(two) types of looping statements

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

In such type of loop, the test condition is checked first before the loop is executed. Some common examples of this looping statements are:

  1. 1. While loop

  1. 2. For loop

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

In such type of loop, the loop is executed first. Then condition is checked after block of statements are executed. The loop executed at least one time compulsorily. Some common example of this looping statement is:

  1. 1. do-while loop

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

for(expr1; expr2; epr3)

{

statement

)

expr1- variable initialization

i = 0, k = 1, j = 2

expr2 - conditional checking

i>5, j<3, k=3

exp3 = increment/decrement

i++,i--

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

While (condition)

{

statements

}

Condition :

a>5, i<10

8.

FILL IN THE BLANK QUESTION

1 min • 1 pt

do

{

statement

} while(condition)

Condition :

a>5, i<10