Q. What is the output of the given code?
hungry=false
unless hungry
print "Not hungry"
else
print "Hungry"
end
hungry=false
unless hungry
print "Not hungry"
else
print "Hungry"
end
β
Correct Answer: (A)
Not hungry