What will be the output of the following code?
for i in range(3):
pass
print(i)
Python Summer internship quiz 4
Quiz
•
Other
•
University
•
Hard
Gnaneshwar Reddy
Used 2+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the output of the following code?
for i in range(3):
pass
print(i)
a) 0
b) 1
c) 2
d) 3
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the purpose of the else clause in a loop in Python?
a) To execute a block of code after the loop finishes normally without hitting a break.
b) To execute a block of code after the loop finishes regardless of whether it hit a break or not.
c) To execute a block of code before the loop starts.
d) To execute a block of code only if the loop is infinite.
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the output of the following code?
for i in range(5):
if i == 3:
continue
print(i)
a) 0 1 2
b) 0 1 2 3
c) 0 1 2 4
d) 0 1 2 3 4
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the output of the following code?
for i in range(5):
if i == 3:
break
print(i)
a) 0 1 2 3
b) 0 1 2
c) 1 2 3
d) 0 1 2 4
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following will result in an infinite loop?
a) for i in range(1, 10, 1): print(i)
b) while True: print("Hello")
c) while False: print("Hello")
d) for i in range(10): print(i)
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How many times will "Hello" be printed in the following code?
for i in range(3):
for j in range(3):
print("Hello")
a) 3
b) 6
c) 9
d) 12
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the output of the following code?
for i in range(3):
for j in range(2):
print(i, j)
a) (0, 0) (0, 1) (1, 0) (1, 1) (2, 0) (2, 1)
b) 0 0 0 1 1 0 1 1 2 0 2 1
c) (0, 0) (0, 1) (1, 0) (1, 1)
d) 0 0 1 1 2 2
10 questions
Simple Easy Basic Lua Quiz
Quiz
•
4th Grade - Professio...
10 questions
PYTHON set4
Quiz
•
University
10 questions
Diagnostico PLyF
Quiz
•
University
14 questions
2R C-Skill Lab Test Autumn 2024-25
Quiz
•
University
15 questions
Tech quiz Round 1
Quiz
•
University
12 questions
JAVA FUNDAMENTALS
Quiz
•
University
15 questions
R programming
Quiz
•
University
10 questions
Python set 3
Quiz
•
University
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