Q7Single correct5 Marks3 Sep 2023
The given pseudocode is executed using the "Words" dataset. stores the number of nouns which have at least one verb adjacent to it. Choose the correct code fragment to complete the pseudocode.
```
V = [], N = [], C = 0
while(Table 1 has more rows){
Read the first row X in Table 1
if(X.PartOfSpeech == "Verb"){
V = V ++ [X.SeqNo]
}
if(X.PartOfSpeech == "Noun"){
N = N ++ [X.SeqNo]
}
Move X to Table 2
}
********************
* Fill the code *
********************
```