Q14.The following pseudocode is executed using the "Words" dataset. What will `A` represent at the end of the execution?
```
A = 0
while(Table 1 has more rows){
Read the first row X in Table 1
i = 1, n = True
while(i <= X.LetterCount){
if(ith letter of X.Word is a vowel){
n = False
}
i = i + 1
}
if(n){
A = A + 1
}
Move X to Table 2
}
```
Save
Check
Details
Q14
10 Jul 2022
Q14.The following pseudocode is executed using the "Words" dataset. What will `A` represent at the end of the execution?
```
A = 0
while(Table 1 has more rows){
Read the first row X in Table 1
i = 1, n = True
while(i <= X.LetterCount){
if(ith letter of X.Word is a vowel){
n = False
}
i = i + 1
}
if(n){
A = A + 1
}
Move X to Table 2
}
```