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
array1 = [100, 200, 300, 400, 500]
array2 = [1,2,3,4,5]
if array1 == array2
print "They are equal"
else
print "Not equal"
endA. They are equal
B. Not equal
C. Nil
D. None of the mentioned
Answer: Option B

Join The Discussion