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"]
print string_array
Correct Answer: C — [“a”,”e”,”i”,”o”,”u”].
print outputs the array inline without newline: ["a","e","i","o","u"].