Discussion :: Ruby Programming MCQs
-
What will be the output of the given code?boolean_1 = 77 less than 78 && 77 less than 77puts boolean_1
Answer : Option B
Explanation :
77<78 is true but 77<77 is false hence the overall expression will evaluate to false. Output: False
Be The First To Comment