Search Header Logo

Control Statements in Python

Authored by Archana Pataskar

Computers

11th Grade

Used 189+ times

Control Statements in Python
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

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

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?

Discover more resources for Computers