Q. Write the output of the following code
Code:
y=2
if 2!=y:
print("H")
else :
print("K")
β
Correct Answer: (B)
K
y=2
if 2!=y:
print("H")
else :
print("K")
You must be Logged in to update hint/solution