Vidyalelo
Ruby Programming · Q49

Arrays, Hashes and Strings in Ruby

Programming · Ruby Programming · question 49

Q49

What will be the output of the following? array1 = [100, 200, 300, 400, 500] array2 = [1,2,3,4,5] if array1 == array2 print "They are equal" else print "Not equal" end

A.
They are equal
B.
Not equal
Answer
C.
Nil
D.
None of the mentioned

Answer: Option B

Solution

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