Vidyalelo
Ruby Programming · Q71

Arrays, Hashes and Strings in Ruby

Programming · Ruby Programming · question 71

Q71

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[1]

A.
["a","e","i","o","u"].
B.
Error
C.
o
FALSE
Answer
D.
None of the mentioned

Answer: Option C

Solution

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