Control Statements in Python

Control Statements in Python

11th Grade

20 Qs

quiz-placeholder

Similar activities

Loops in Python

Loops in Python

7th - 11th Grade

15 Qs

For and While Loop in Python

For and While Loop in Python

9th - 12th Grade

18 Qs

Python Pretest

Python Pretest

9th - 12th Grade

15 Qs

Algorithms - python (GCSE)

Algorithms - python (GCSE)

10th - 12th Grade

25 Qs

SAD 1

SAD 1

9th - 12th Grade

20 Qs

Python Strings

Python Strings

11th Grade

21 Qs

Python Loops, Strings, Lists

Python Loops, Strings, Lists

11th Grade

15 Qs

Python for Each

Python for Each

10th - 11th Grade

18 Qs

Control Statements in Python

Control Statements in Python

Assessment

Quiz

Computers

11th Grade

Medium

Created by

Archana Pataskar

Used 178+ 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?