Home / Programming MCQs / Ruby MCQs / Question

Y

Yami Thakur • 9.05K Points
Tutor III

Q. What will be the output of the given ruby code?

Code:
a=[1,2,3,4,5]
b=[1,2,4,6,8]
if a[3]==b[2]
    print Equal
end
(A) TRUE
(B) FALSE
(C) Equal
(D) error
Explanation by: Yami Thakur
a[3]=4 and b[2]=4 hence it will print equal according to the given if condition

You must be Logged in to update hint/solution

Discusssion

Login to discuss.