Search Header Logo

Conditionals(If, ele elif)

Authored by lenoraann samuel

Fun

6th - 8th Grade

Used 6+ times

Conditionals(If, ele elif)
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

a, b = 12, 5

if a + b:

print('True')

else:

print('False')

True

False

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many conditions can be specified in an if block?

Two

Infinite

one

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct syntax for the if-else block?

If condition: Code-block Else: code-block

If condition: code-block Elif condition: pass

if()

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the shorthand for the else block combined with an if block in python?

else-if

elseIf

elif

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the code given below?

# Code Snippet Starts

if(‘true’):

    print(“Hello, from QuizOrbit!”)

else:

    print(“Exit!”)

Error

Hello, from QuizOrbit!

Exit

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Find the output of the code given below?

# Code Snippet Starts

a=12

b=16

if (a-b):

    print(‘Quizorbit domain’)

else:

    pass

Pass

QuizOrbit domain

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Find the output of the code given below?

# Code Snippet Starts

a = 12

b = 15

c = 18

if (a>b):

    b+=5

elif(b>c):

    c+=5

elif(c>a):

    a+=9

print(a,b,c)

21 15 18

21 15 23

21 20 23

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?