Conditionals(If, ele elif)

Conditionals(If, ele elif)

6th - 8th Grade

10 Qs

quiz-placeholder

Similar activities

Arcade makecode

Arcade makecode

6th Grade

11 Qs

Learning Styles

Learning Styles

6th - 8th Grade

15 Qs

Markdown quiz

Markdown quiz

KG - Professional Development

10 Qs

3 Python if statements

3 Python if statements

7th - 9th Grade

10 Qs

NDT Course Updates

NDT Course Updates

3rd - 6th Grade

10 Qs

Robotics Spike Prime Sensors and motors quiz

Robotics Spike Prime Sensors and motors quiz

6th - 8th Grade

11 Qs

New Teacher Quizzizz

New Teacher Quizzizz

6th - 8th Grade

10 Qs

Vollyball

Vollyball

KG - Professional Development

15 Qs

Conditionals(If, ele elif)

Conditionals(If, ele elif)

Assessment

Quiz

Fun

6th - 8th Grade

Easy

Created by

lenoraann samuel

Used 6+ times

FREE Resource

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

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?