Control Statements in Python

Control Statements in Python

11th Grade

20 Qs

quiz-placeholder

Similar activities

Python Basics

Python Basics

KG - University

16 Qs

Python Basics Review (TSK)

Python Basics Review (TSK)

9th - 12th Grade

20 Qs

Python - Quiz

Python - Quiz

9th - 11th Grade

17 Qs

Python Basics ;)

Python Basics ;)

11th Grade

20 Qs

For Loops in Python

For Loops in Python

10th - 11th Grade

18 Qs

Flow of Control

Flow of Control

11th - 12th Grade

18 Qs

For and While Loops in Python

For and While Loops in Python

9th - 12th Grade

16 Qs

Python For And While Loop

Python For And While Loop

8th - 12th Grade

20 Qs

Control Statements in Python

Control Statements in Python

Assessment

Quiz

Computers

11th Grade

Medium

Created by

Archana Pataskar

Used 172+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

30 sec • 12 pts

Function range(3) is equivalent to "

range(1,3)

range(0,3)

range(0,3,1)

range(1,3,0)

2.

MULTIPLE CHOICE QUESTION

30 sec • 12 pts

Consider the following loop given below :


for i in range(5):

print(i)


How many times will this loop run ?

5

0

infinite

Error

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output of the following code?

for word in "Jump Statement":

if word == "u":

break

print (word, end='')

Jump Statement

Jump

J

Ju

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Predict the output of following code

for word in "Jump Statement":

if word == "e":

continue

print (word, end='')

Jump Statement

Jump Statmnt

Jump

Statmnt

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following jump statement is used to terminate the loop?

continue

goto

pass

break

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following function is used in python for loop to specify the initial, final and increment values?

range

print

format

input

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The condition in the statement should be in the form of

Arithmetic r relational expression

Arithmetic or Logical expression

Relational or Logical expression

Arithmetic

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?