Answer:
Following is the program in the python language
s="Hellooo" #string initialization
k=0 # variable declaration
vowel_count=0 #variable declaration
while k<len(s): #iterating the loop
c1=s[k] #store in the c1 variable
if c1=='a' or c1=='e' or c1=='i' or c1=='o' or c1=='u': #check the condition
vowel_count= vowel_count +1; # increment the variable vowel_count
k = k+1
print(vowel_count) #display
Output:
4
Explanation:
Following is the description of program