What is the output of the given code?
x=3
unless x>2
puts "x is less than 2"
else
puts "x is greater than 2"
end
x=3
unless x>2
puts "x is less than 2"
else
puts "x is greater than 2"
endA. x is greater than 2
B. x is less than 2
C. 3
D. None of the mentioned
Answer: Option A

Join The Discussion