Q8Multiple correct5 Marks13 Apr 2025
The following pseudocode is executed using the "Words" dataset. 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.PartOfSpeech]
}
if(X.Word ends with a full stop){
outList = outList ++ [inList]
start = True
}
Move X to Table 2
}
```
―――――――――――――――――――――――――――――――――――――――――――――――――――――――