Arrays, Hashes And Strings In Ruby MCQs
Practice Arrays, Hashes And Strings In Ruby MCQs for competitive exams.
Arrays, Hashes And Strings In Ruby MCQs
Practice questions from this topic.
What is the output of the given code? multi_d_array = [[0,0,0,0],[0,0,0,0],[0,0,0,0],[0,0,0,0]] print multi_d_array
Correct Answer: A
Each element in an array has an index and the starting index is index 1.
Correct Answer: B
What is the output of the given code? array1 = [[1,2,3,4],[0,0,0,0]] array2 = [[1,2,3,4],[0,0,0,0]] if array1==array2 print "Equal" else print "Not equal" end
Correct Answer: B
What is the output of the given code? array1 = [[1,2,3,4,5],[0,0,0,0]] array2 = [[1,2,3],[0,0,0]] print array1 || array2
Correct Answer: B
What is the output of the given code? string_array = ["a","e","i","o","u"] print string_array
Correct Answer: A
What is the output of the given code? a=["hey", "ruby", "language"] b=[1, 2, 3] puts b[1] puts a[2]
Correct Answer: C
Array of arrays are called multidimensional arrays.
Correct Answer: A
What is the output of the given code? string_array = ["a","e","i","o","u"] boolean_array = ["True","False"] puts string_array[3] puts boolean_array
Correct Answer: C
What is the output of the given code? a=["hey", "ruby", "language"] b=["hey", "language", "ruby"] if a==b print "Equal" else print "Not equal" end
Correct Answer: C
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
Correct Answer: A
What is the output of the given code? a=[1,2,3,4,5] b=[1,2,3,4,5] if a==b print "Equal" else print "Not equal" end
Correct Answer: A
It is possible to make array of booleans.
Correct Answer: A
