Q11.Let the value of `X` be "aeroplane". What is the value of `A` at the end of the execution of the pseudocode?
```
i = 1
A = 1
while(i <= X.LetterCount){
if(ith letter of X is a vowel){
A = A * 2
}
i = i + 1
}
```
Save
Check
Details
Q11
16 Jul 2023
Q11.Let the value of `X` be "aeroplane". What is the value of `A` at the end of the execution of the pseudocode?
```
i = 1
A = 1
while(i <= X.LetterCount){
if(ith letter of X is a vowel){
A = A * 2
}
i = i + 1
}
```