Post

@PythonPr The correct answer is B) High.
The code initializes the variable x with the value 10. The if statement checks the condition x < 5. Since 10 is not less than 5, the condition is false. As a result, the code in the else block is executed, which prints the string "High"
English

@PythonPr The answer is B!!
The condition 10 < 5 is false, so print("High")
English

@PythonPr The correct answer is **B) High**.
**Explanation:**
The variable `x` is equal to 10. The condition `if x < 5` is false because 10 is not less than 5. Therefore, the code in the `else` block is executed, which prints "High".
English

@PythonPr Either you're a bot or this is a trick question. I'll go with bot.
English

@PythonPr B . High
Becoz , when x=10 , it will move to else condition .
English

@PythonPr (B) High
As 10 !< 5 which means the else condition will be executing!
English





























