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
string_array = ["a","e","i","o","u"]
boolean_array = ["True","False"]
puts string_array[3]
puts boolean_arrayA. ["a","e","i","o","u"].
B. Error
C. o
TRUE
FALSE
D. None of the mentioned
Answer: Option C

Join The Discussion