Question 13
The given pseudocode is executed using the “Words” dataset. C 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 = 0while (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 *********************