COMPROG:UNIT#3:ITERATIVE CONTROL STATEMENTS

COMPROG:UNIT#3:ITERATIVE CONTROL STATEMENTS

3rd Grade

8 Qs

quiz-placeholder

Similar activities

Exploring Drawing in Scratch

Exploring Drawing in Scratch

3rd Grade

10 Qs

Bff test

Bff test

1st - 5th Grade

7 Qs

Healthy vs Junk Food Challenge

Healthy vs Junk Food Challenge

3rd Grade

10 Qs

vocab wuiz

vocab wuiz

1st - 5th Grade

10 Qs

Fun Vocabulary Challenge

Fun Vocabulary Challenge

3rd Grade

12 Qs

Test 1

Test 1

1st - 5th Grade

10 Qs

q ulb

q ulb

1st - 5th Grade

10 Qs

How Do You Raise a Raisin? Comprehension Set

How Do You Raise a Raisin? Comprehension Set

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