Q51
What is the output of the given code? multi_d_array = [[1,2,3,4],[0,0,0,0]] multi_d_array.each |x| puts "#x "
A.
[1, 2, 3, 4].
[0, 0, 0, 0].
[[1, 2, 3, 4], [0, 0, 0, 0]].
Answer[0, 0, 0, 0].
[[1, 2, 3, 4], [0, 0, 0, 0]].
B.
[0, 0, 0, 0].
C.
[0, 0, 0, 0][0, 0, 0, 0].
D.
None of the mentioned
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board