Q. What will be the output of the given ruby code?
Code:
string_array = [a,e,i,o,u] print string_array
β
Correct Answer: (B)
["a","e","i","o","u"]
Explanation: The array is a string array.