Q11Numerical3 Marks16 Jul 2023
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
}
```
Press Enter to check.