Search Header Logo

PYTHON-04

Authored by Riya Shakya

Computers

9th - 12th Grade

Used 7+ times

PYTHON-04
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

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

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?