Class-XI_IP_Python

Class-XI_IP_Python

11th Grade

10 Qs

quiz-placeholder

Similar activities

ASK F2 -KOD ARAHAN (PYTHON)

ASK F2 -KOD ARAHAN (PYTHON)

1st Grade - University

15 Qs

CodeHS Python Unit 6 Quiz Review

CodeHS Python Unit 6 Quiz Review

9th - 12th Grade

15 Qs

Intro to Python

Intro to Python

9th - 12th Grade

10 Qs

Basic Python Coding

Basic Python Coding

11th - 12th Grade

15 Qs

Intermediate Python

Intermediate Python

9th - 11th Grade

15 Qs

CodeHS Python Variables

CodeHS Python Variables

7th - 12th Grade

10 Qs

Fundamentals of Python

Fundamentals of Python

9th - 12th Grade

13 Qs

Variables & Lists

Variables & Lists

9th - 12th Grade

10 Qs

Class-XI_IP_Python

Class-XI_IP_Python

Assessment

Quiz

Computers

11th Grade

Medium

Created by

Preeti Vig

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword is used for conditional branching in Python?

select

case

if

choose

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the output of the following code?

x = 4

while x < 6:

print(x)

x += 1

4

4 5

Infinite loop

5 6

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output for the following code-

for i in range(2):

print(i, end=" ")

0 1

1 2

0 1 2

1

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is output of the following code-

for i in range(1, 10, 3):

print(i, end=" ")

1 2 3 4 5 6 7 8 9

1 3 5 7 9

1 4 7

3 6 9

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the output for the following code-

x = 7

if x % 2 == 0:

print("Even")

else:

print("Odd")

Even

Odd

Error

None

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What is the output of the following loop-

for i in range(3):

print("Hello", i)

Hello Hello Hello

Hello 1 Hello 2 Hello 3

Hello 0 Hello 1 Hello 2

Error

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following will print numbers from 10 to 1?

range(10, 1)

range(1, 10, -1)

range(10, 0, -1)

range(0, 10, -1)

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?