While Loops

While Loops

10th - 12th Grade

7 Qs

quiz-placeholder

Similar activities

Vòng lặp for

Vòng lặp for

7th Grade - University

10 Qs

C++ Arrays

C++ Arrays

8th - 12th Grade

12 Qs

Array

Array

10th Grade

10 Qs

Сpp 1_3

Сpp 1_3

9th - 12th Grade

10 Qs

Praca klasowa C++

Praca klasowa C++

12th Grade

12 Qs

Le basi C++

Le basi C++

11th Grade

10 Qs

10 ԹԳՀԳ 2-րդ կիսամյակ ամփոփիչ գրավոր աշխատանք/ֆունկցիաներ/

10 ԹԳՀԳ 2-րդ կիսամյակ ամփոփիչ գրավոր աշխատանք/ֆունկցիաներ/

10th Grade

10 Qs

Divide et Impera

Divide et Impera

11th Grade - University

12 Qs

While Loops

While Loops

Assessment

Quiz

Mathematics, Computers

10th - 12th Grade

Hard

Created by

Austin Wilcox

Used 17+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Make this code loop three times:


in tries= 0;


while(_________ ) {

cin>> “Looping!”;

tries++;


}

tries < 3

answer == 3

tries > 0

tries < 0

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Make this code stop looping when you get the right answer or have no more tries left


string answer;

int tries = 5;


while(_________) {

cin>> answer;

if (answer == “the right answer”){

cout<<“correct”<<endl;

break;

}

tries - - ;

}

tries == answer

tries > 0

tries >= 3

tries <= 5

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is printed out here:

int x=8;

while (x<4){

cout << "WOAH!";

}

NOTHING

INFINITE LOOP

WOAH!WOAH!WOAH!WOAH!

WOAH!WOAH!WOAH!WOAH!WOAH!

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times does the following code run:

int x=9;

while (x<11){

int y=2;

while (y>=-3){

cout << x*y;

y--;

x++;

}

}

0

infinite number

10

12

5.

OPEN ENDED QUESTION

1 min • 1 pt

What is the output here:

int x=9;

while (x<11){

int y=2;

while (y>=-3){

cout << x*y;

y--;

x++;

}

}

Evaluate responses using AI:

OFF

6.

OPEN ENDED QUESTION

3 mins • 1 pt

What is the initializer, condition, and finalizer in the following code:

int x=7;

while (x<12){

cout << 2*x;

x+=2;

}

Evaluate responses using AI:

OFF

7.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

Fill in the blank with the right symbol to make this code print Tacos 4 times


int tacos = 4;


while(tacos ___ 0){

cout<<“Tacos”<<endl;


tacos - - ;

}