ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
What is the output of the given code
string_array = ["a","e","i","o","u"]
boolean_array = ["True","False"]
puts string_array[puts boolean_array[0]]
Correct Answer: D — o
print outputs the array as-is: ["a","e","i","o","u"].