What is the output of the given code
string_array = ["a","e","i","o","u"]
print string_array[3]
o
Error
None of the mentioned
[“a”,”e”,”i”,”o”,”u”].
Correct Answer: A — o
Explanation:
string_array[3] accesses index 3 (0-based), which is 'o'.