Q. Write the output of the following:
Code:
a=155
b=126
c=237
d=388
if a > b:
if c > a:
if d < c:
print("Hello")
else:
print("B")
else:
print("A")
β
Correct Answer: (C)
B