Q7Single correct4 Marks24 Dec 2023
The following pseudocode is executed using the 'Words' dataset. What will A represent at the end of the execution? Assume there are more than five sentences in the 'Words' dataset.
```
A = 0, sNum = 0
while(Table 1 has more rows and sNum < 5){
Read the first row X in Table 1
if(X.PartOfSpeech == "Verb"){
if(X.LetterCount > A){
A = X.LetterCount
}
}
if(X.Word ends with a full stop){
sNum = sNum + 1
}
Move X to Table 2
}
```