Ruby - Operators and Expressions
What will be the output of the following Ruby code?
a = 5
b = 10
puts a < b
a = 5
b = 10
puts a < b
a (5) is less than b (10).a < b is true.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions