Q. What is the output of the given code?
a=10
b=9
if(a>b)
print ("a greater than b")
else
print "Not greater"
end
a=10
b=9
if(a>b)
print ("a greater than b")
else
print "Not greater"
end
β
Correct Answer: (A)
a greater than b