What will be the output of the following?
array1 = [0,0,0]
array2 = [0,0,0]
if array1 == array2
print "They are equal"
else
print "Not equal"
end
array1 = [0,0,0]
array2 = [0,0,0]
if array1 == array2
print "They are equal"
else
print "Not equal"
end
A. They are equal
B. Not equal
C. Nil
D. None of the mentioned
Answer: Option A
Related Questions on Arrays, Hashes and Strings in Ruby
Which method in Ruby is used to add an element to the end of an array?
A. push
B. pop
C. append
D. insert
What will array.size return in Ruby, if array = [1, 2, 3, 4, 5]?
A. 5
B. 4
C. [1, 2, 3, 4, 5]
D. "array"
Which method is used to access the value associated with a specific key in a hash in Ruby?
A. access
B. get
C. fetch
D. value
Join The Discussion