Make this code loop three times:
in tries= 0;
while(_________ ) {
cin>> “Looping!”;
tries++;
}
While Loops
Quiz
•
Mathematics, Computers
•
10th - 12th Grade
•
Hard
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 - - ;
}
12 questions
Praca klasowa C++
Quiz
•
12th Grade
10 questions
Test if si for
Quiz
•
10th Grade
10 questions
Le basi C++
Quiz
•
11th Grade
11 questions
C++程式
Quiz
•
11th Grade - University
12 questions
Divide et Impera
Quiz
•
11th Grade - University
12 questions
Массивы C++
Quiz
•
10th - 11th Grade
10 questions
C++ - PEI
Quiz
•
10th Grade
10 questions
Dasar Pemrograman C++
Quiz
•
10th Grade
15 questions
Character Analysis
Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing
Quiz
•
9th - 12th Grade
10 questions
American Flag
Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension
Quiz
•
5th Grade
30 questions
Linear Inequalities
Quiz
•
9th - 12th Grade
20 questions
Types of Credit
Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25
Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers
Quiz
•
6th - 8th Grade
30 questions
Linear Inequalities
Quiz
•
9th - 12th Grade
20 questions
Inequalities Graphing
Quiz
•
9th - 12th Grade
10 questions
Identifying equations
Quiz
•
KG - University
20 questions
Solving Linear Equations for y
Quiz
•
9th - 12th Grade
11 questions
Graph Match
Quiz
•
9th - 12th Grade
16 questions
Function or Non-Function?
Quiz
•
8th - 10th Grade
18 questions
Unit Circle Trig
Quiz
•
10th - 12th Grade
20 questions
Understanding Linear Equations and Slopes
Quiz
•
9th - 12th Grade