Post

@PythonPr Answer: B. High
Explanation;
Variable Assignment: The code first assigns the integer value of 10 to the variable x.
Conditional Check: The if statement then checks the condition x < 5 (is 10 less than 5?). This condition is false.
Else Block Execution: Because the
English

@PythonPr B
Because (x < 5) is false, thus the interpretor moves to the else block and runs print("High") which displays ">>High" in the console
English

@PythonPr The output will be B. We assigned x the value of 10. The next line can be read as the mathematical expression if 10 < 5, which is false, hence the print statement under the if block is skipped and automatically the else block's code is executed
English






















