Q. What is the output of the given code?
if !true
print "False"
elsif !true || true
print "True"
end
if !true
print "False"
elsif !true || true
print "True"
end
β
Correct Answer: (A)
True