Vidyalelo
Ruby Programming · Q49

Operators in Ruby

Programming · Ruby Programming · question 49

Q49

What is the output of the given code? test_1 = 17 > 16 puts(test_1) test_2 = 21 = 9 puts(test_3) test_4 = -11 > 4 puts(test_4)

A.
True false true false
B.
True True True False
Answer
C.
False False True True
D.
None of the mentioned

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board