Q4Single correct5 Marks31 Aug 2025
The following pseudocode is executed using the "Words" dataset. For a list L, let unique(L) return the list of unique elements of L. At the end of execution, wCount represents a dictionary with words as keys mapped to the number of sentences in which the word is present. Choose the correct code fragment.
```
wList = []
wCount = {}
while(Table 1 has more rows){
Read the first row X from Table 1
wList = wList ++ [X.Word]
********* Fill the code *********
Move X to Table 2
}
```