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"
endA. a and b are same
B. Not same
C. a==b
D. None of the mentioned
Answer: Option B

Join The Discussion