Q53Comprehension3 Marks2 Apr 2023
Passage
The following pseudocode is executed using the Words dataset. Answer the given subquestions.
```
count = 0, flag = True
while(Table 1 has more rows) {
Read the first row X in Table 1
***************
* Fill the code *
***************
Move X to Table 2
}
```
What will `count` represent at the end of execution if the missing code is filled by:
```
if(X.Word ends with full stop) {
if(X.PartOfSpeech == "Noun") {
count = count + 1
}
}
```