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 - - ;
}
Similar Resources on Wayground
5 questions
Posst Test

Quiz
•
10th Grade
5 questions
JAVA

Quiz
•
11th Grade
11 questions
Lenguajes 1 - CM2 rueditas

Quiz
•
1st - 10th Grade
12 questions
Символьные строки, операции со строками - С++

Quiz
•
10th Grade
9 questions
Instructiuni Repetitive C++

Quiz
•
10th Grade
8 questions
Functii quiz

Quiz
•
9th - 12th Grade
10 questions
C++ Basics Quiz

Quiz
•
9th - 12th Grade
10 questions
Pengantar Modularisasi

Quiz
•
11th Grade
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
Appointment Passes Review

Quiz
•
6th - 8th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
20 questions
Grammar Review

Quiz
•
6th - 9th Grade
Discover more resources for Mathematics
13 questions
8th - Unit 1 Lesson 3

Quiz
•
9th - 12th Grade
16 questions
Segment Addition Postulate

Quiz
•
10th Grade
7 questions
EAHS PBIS Lesson- Bus

Lesson
•
9th - 12th Grade
16 questions
Segment Addition Postulate

Quiz
•
10th Grade
20 questions
Solving Multi-Step Equations

Quiz
•
10th Grade
20 questions
Midpoint and Distance

Quiz
•
10th Grade
12 questions
Conditional Statement Practice

Quiz
•
10th Grade
20 questions
Translations, Reflections & Rotations

Quiz
•
8th - 10th Grade