Question 18 - Week 1 Practice | Prasnya
Prasnya
Continue with Google
Practice path
Dashboard
Exam
Qualifier / Quiz 1
Go to subject
Programing with python
Go to chapter
Week 1
Question 18
00:00
Est. 2 min
Marks:
+4.00
0.00
What is the output of the following snippet of code? ``` word = 'claustrophobic' size = len(word) count = 0 for x in range(size): if word[x] in 'aeiou': if x % 2 == 0: count = count + 1 print(count) ```
Integer answer
Medium Difficulty
29 October 2023
Your answer