Q. What is the output of the given code?
variable = false
if variable
print "false"
elsif !variable
print "true"
end
variable = false
if variable
print "false"
elsif !variable
print "true"
end
β
Correct Answer: (B)
greater