Conditionals
Sign in to Google to save your progress. Learn more
Email *
Programme
What do we do to a Python statement that is immediately after an if statement to indicate that the statement is to be executed only when the if statement is true?
1 point
Clear selection

Which of these operators is not a comparison / logical operator?

1 point
Clear selection

What is true about the following code segment:

if  x == 5 :

    print('Is 5')

    print('Is Still 5')

    print('Third 5')

1 point
Clear selection
When you have multiple lines in an if block, how do you indicate the end of the if block?
1 point
Clear selection

You look at the following text:

if x == 6 :

    print('Is 6')

    print('Is Still 6')

    print('Third 6')

It looks perfect but Python is giving you an 'Indentation Error' on the second print statement. What is the most likely reason?

1 point
Clear selection

What is the Python reserved word that we use in two-way if tests to indicate the block of code that is to be executed if the logical test is false?

1 point
Clear selection

What will the following code print out?

x = 0

if x < 2 :

    print('Small')

elif x < 10 :

    print('Medium')

else :

    print('LARGE')

print('All done')

1 point
Clear selection

For the following code,

if x < 2 :

    print('Below 2')

elif x >= 2 :

     print('Two or more')

else :

    print('Something else')

What value of 'x' will cause 'Something else' to print out?

1 point
Clear selection

In the following code (numbers added) - which will be the last line to execute successfully?

(1)   astr = 'Hello Bob'

(2)   istr = int(astr)

(3)   print('First', istr)

(4)   astr = '123'

(5)   istr = int(astr)

(6)   print('Second', istr)

1 point
Clear selection

For the following code:

astr = 'Hello Bob'

istr = 0

try:

    istr = int(astr)

except:

    istr = -1

What will the value be for istr after this code executes?

1 point
Clear selection
Submit
Clear form
This form was created inside of Kalinga Institute of Social Sciences. Report Abuse