Solved

Which of the Following Statements A), B) or C) Is

Question 6

Multiple Choice

Which of the following statements a) , b) or c) is false?


A) The following code shows two statements in the else suite of an if…else statement: grade = 49
If grade >= 60:
Print('Passed')
Else:
Print('Failed')
Print('You must take this course again')
B) In the code in Part (a) , grade is less than 60, so both statements in the else's suite execute.
C) In the code of Part (a) , even if you do not indent the else suite's second print statement, it's still in the else's suite. So, the code runs correctly.
D) All of the above statements are true.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions