
while loop

Quiz
•
Computers
•
University
•
Hard
thanga_palani_ thanga_palani_
Used 1+ times
FREE Resource
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What does a while loop do?
Runs code once
Runs code until a condition becomes False
Runs only with numbers
Runs forever
Answer explanation
A while loop repeatedly executes a block of code as long as a specified condition remains true. It stops running when the condition evaluates to false, making 'Runs code until a condition becomes False' the correct choice.
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of this code?
i = 1
while i <= 3:
print(i) i += 1
1 1 1
1 2 3
1 2 3 4
Error
Answer explanation
The code initializes i to 1 and enters a while loop that runs as long as i is less than or equal to 3. It prints the value of i and increments it by 1 each time. The output is 1, 2, 3, which corresponds to the correct choice.
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What happens if the condition in while is always True?
Runs once
Infinite loop
Skips the loop
Gives error
Answer explanation
If the condition in a while loop is always true, the loop will continue to execute indefinitely, resulting in an infinite loop. This means the program will not exit the loop unless interrupted or terminated.
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of these can cause an infinite loop?
Missing print()
No indentation
No i += 1
Using if
Answer explanation
The correct choice is 'No i += 1'. Without this increment, the loop variable 'i' never changes, causing the loop to run indefinitely. The other options do not directly lead to an infinite loop.
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How many times will this loop run?
i = 1
while i < 5:
i += 1
4
5
0
Infinite
Answer explanation
The loop starts with i = 1 and runs while i < 5. It increments i by 1 each time. The values of i will be 1, 2, 3, 4, and then it stops when i becomes 5. Thus, the loop runs 4 times, making the correct answer 4.
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What does this program do?
x = 1
while x <= 5:
print("Hi")
x += 1
Prints Hi 4 times
Prints Hi 5 times
Runs forever
Gives error
Answer explanation
The program initializes x to 1 and enters a loop that runs while x is less than or equal to 5. It prints 'Hi' and increments x by 1 each time, resulting in 'Hi' being printed 5 times before the loop ends.
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which keyword is used to exit a while loop early?
stop
exit
break
return
Answer explanation
The keyword 'break' is used to exit a while loop early. It immediately terminates the loop, allowing the program to continue with the next statement following the loop. Other options like 'stop' and 'exit' are not valid in this context.
Create a free account and access millions of resources
Similar Resources on Wayground
20 questions
CSE C Section

Quiz
•
University
10 questions
CS1010 Lab 03

Quiz
•
University
15 questions
PYTHON BOOTCAMP

Quiz
•
University
10 questions
Java Static

Quiz
•
University
20 questions
Code-A-Vita

Quiz
•
University
10 questions
Python Round 2

Quiz
•
University
20 questions
Python Programming

Quiz
•
University
10 questions
Python quiz

Quiz
•
10th Grade - Professi...
Popular Resources on Wayground
10 questions
Video Games

Quiz
•
6th - 12th Grade
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
15 questions
Core 4 of Customer Service - Student Edition

Quiz
•
6th - 8th Grade
15 questions
What is Bullying?- Bullying Lesson Series 6-12

Lesson
•
11th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
Discover more resources for Computers
20 questions
Definite and Indefinite Articles in Spanish (Avancemos)

Quiz
•
8th Grade - University
7 questions
Force and Motion

Interactive video
•
4th Grade - University
36 questions
Unit 5 Key Terms

Quiz
•
11th Grade - University
7 questions
Figurative Language: Idioms, Similes, and Metaphors

Interactive video
•
4th Grade - University
15 questions
Properties of Equality

Quiz
•
8th Grade - University
38 questions
WH - Unit 3 Exam Review*

Quiz
•
10th Grade - University
21 questions
Advise vs. Advice

Quiz
•
6th Grade - University
12 questions
Reading a ruler!

Quiz
•
9th Grade - University