- Structured Programming
- Selection Control Structures
- Code Blocks
- Condition Examples: Temperature Conversion Pseudocode
- Condition Examples: Python Code
- Structured Quiz 5 questions
- If and If-else Statement
- If and If-else Quiz 5 questions
- Chained Decisions
- Chained Decisions Quiz 5 questions
- Nested Decision
- Nested Decision Quiz 5 questions
- Conditional Expressions
- Conditional Expressions Quiz 5 questions
Quiz Question 1 of 5
Given the following expression, which statement correctly describes the evaluation process and final value of output
?
output = "High" if 70 <= score < 90 else "Medium" if 50 <= score < 70 else "Low"
If score = 65
, which option correctly explains the process?
Choose the correct answer below:
-
A
The expression evaluates
70 <= score < 90
first, which is false, then checks50 <= score < 70
, which is true, settingoutput
to "Medium". -
B
The expression evaluates all conditions simultaneously, and the last condition
50 <= score < 70
is chosen because it is true, settingoutput
to "Medium". -
C
The expression checks the condition
50 <= score < 70
first because it appears in the middle, resulting inoutput
being "Medium". -
D
The expression evaluates conditions in reverse order, starting with
50 <= score < 70
, which is true, settingoutput
to "Medium".