Q. What is the output of the given code?
if 11>2
puts "Eleven is greater than two"
end
print "You'r right"
if 11>2
puts "Eleven is greater than two"
end
print "You'r right"
β
Correct Answer: (C)
Eleven is greater than two
You'r right