Q. Execution of which statement is not dependent on the condition?
Code:
if i <=4 :
print("Hello") #Statement 1
print("How") #Statement 2
else:
print("are") #Statement 3
print("You") #Statement 4
β
Correct Answer: (D)
Statement 4