Python Quiz 5 Summer internship

Python Quiz 5 Summer internship

University

10 Qs

quiz-placeholder

Similar activities

Mastering Python Loops

Mastering Python Loops

University

10 Qs

Python Review Module 14 - Recursion

Python Review Module 14 - Recursion

University

10 Qs

Quiz on Object Oriented Programming and Java

Quiz on Object Oriented Programming and Java

University

15 Qs

C PROGRAMMING

C PROGRAMMING

University

15 Qs

Python set 2

Python set 2

University

10 Qs

Python foundation

Python foundation

5th Grade - University

10 Qs

Embedded programing - Day1

Embedded programing - Day1

University

10 Qs

Python Strings and Variables

Python Strings and Variables

5th Grade - University

8 Qs

Python Quiz 5 Summer internship

Python Quiz 5 Summer internship

Assessment

Quiz

Other

University

Hard

Created by

Gnaneshwar Reddy

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements is used to terminate a loop early in Python?




A) continue

B) break

C) pass

D) return

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the continue statement do in a loop?



A) Terminates the loop

B) Skips the rest of the code inside the loop for the current iteration

C) Passes control to the next loop

D) Restarts the loop

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In Python, which statement can be used to execute a block of code only if the loop is not terminated by a break statement?




A) except

B) else

C) finally

D) continue

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code snippet?
for i in range(5):

if i == 3:

break

print(i)

A) 0 1 2


B) 0 1 2 3

C) 1 2 3 4

D) 0 1 2 3 4

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements correctly describes the functionality of the pass statement in loops?



A) It terminates the loop.

B) It causes the loop to skip the rest of the code for the current iteration.

C) It does nothing and allows the loop to proceed.

D) It restarts the loop from the beginning.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?
for i in range(3):

if i == 1:

continue

print(i)

else:

print("Loop completed")

A) 0 2 Loop completed


B) 0 1 2

C) 0 2

D) 0 2 3 Loop completed

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which loop control statement would you use to skip the execution of the remaining code inside the loop for the current iteration and move to the next iteration?



A) break

B) continue

C) pass

D) exit

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?