Search Header Logo

Python If Conditions Quiz

Authored by Enam Alzeedat

World Languages

10th Grade

Python If Conditions Quiz
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the syntax for an if statement in Python?

if condition: code_block

if condition then code_block

if (condition) { code_block }

if condition: { code_block }

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you write an if-else statement in Python?

if condition: # code block for if condition else: # code block for else condition

if condition: # code block for else condition

if condition: # code block for if condition

if condition: # code block for if condition else: # code block for else condition

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What logical operator is used for 'and' in Python?

or

and

xor

not

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What logical operator is used for 'or' in Python?

or

xor

not

and

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you check if a number is greater than 10 using an if statement?

if (number > 10) { // code block }

if (number < 10) { // code block }

if (number >= 10) { // code block }

if (number == 10) { // code block }

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In Python, how do you check if a string is empty using an if statement?

if my_string == ''

if len(my_string) == 0

if my_string is None

if not my_string

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code snippet: if 5 > 3: print('True') else: print('False')

Error

Invalid

False

True

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?