PYTHON-04

PYTHON-04

9th - 12th Grade

25 Qs

quiz-placeholder

Similar activities

Token in Python

Token in Python

9th Grade

20 Qs

Python Functions and Error Handling

Python Functions and Error Handling

10th Grade - University

20 Qs

Python Review Quiz

Python Review Quiz

7th - 9th Grade

20 Qs

IT QUEST

IT QUEST

11th Grade

20 Qs

Python Basics 3

Python Basics 3

6th Grade - University

30 Qs

Cyber Quiz Round 2

Cyber Quiz Round 2

9th - 12th Grade

20 Qs

Python Recap

Python Recap

7th Grade - University

20 Qs

Python

Python

12th Grade

20 Qs

PYTHON-04

PYTHON-04

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

Riya Shakya

Used 7+ times

FREE Resource

AI

Enhance your content

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Which keyword is used to check if a condition is true or false in Python?

a) if

b) else

c) elif

d) while

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What symbol is used to represent equality in a condition statement?

=

==

>

<

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Which statement is used to execute a block of code repeatedly as long as a condition is true?

if

for

else

while

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

How do you combine multiple conditions in an if statement?

Using the or operator (|)

Using the and operator (&)

Using the not operator (~)

Using the in operator

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What is the output of the following code snippet?

x = 10

if x > 5:

print("Greater than 5")

else:

print("Less than or equal to 5")

Greater than 5

Less than or equal to 5

Greater than or equal to 5

Less than 5

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

How many times will the following loop execute?

count = 0

while count < 5:

count += 1

0

4

5

ERROR

7.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What will be the output of the following code snippet?

x = 5

if x < 10:

print("Less than 10")

elif x < 7:

print("Less than 7")

else:

print("Greater than or equal to 7")

Less than 10

Less than 7

Greater than or equal to 7

No output

Create a free account and access millions of resources

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

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?