Q. What is the output of the given code?
a="string"
b="strings"
if(a==b)
print ("a and b are same")
else
print "Not same"
end
a="string"
b="strings"
if(a==b)
print ("a and b are same")
else
print "Not same"
end
β
Correct Answer: (B)
Not same