Q. What is the output of the following code snippet?
x = 10
unless x > 15
puts "Hello"
end
x = 10
unless x > 15
puts "Hello"
end
β
Correct Answer: (A)
Hello
You must be Logged in to update hint/solution