Q3Multiple correct5 Marks6 May 2026
The following pseudocode is executed using the "Words" dataset. Assume that the rows in the table are sorted in the ascending order of sequence number. What does outList represent at the end of execution?
```
start = True
outList = []
while(Table 1 has more rows){
Read the first row X in Table 1
if(start){
inList = []
start = False
}
if(X.PartOfSpeech != "adjective"){
inList = inList ++ [X.Word, X.LetterCount]
}
if(X.Word ends with a full stop){
outList = outList ++ [inList]
start = True
}
Move X to Table 2
}
```
────────────────────────────────────────