The following pseudocode is executed using the Words dataset. Answer the given subquestions based on this common context.
```
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
}
```
Question
Based on the comprehension context above, what will `count` represent at the end of execution if the missing code is filled by the code below?
```
if(flag and X.PartOfSpeech != "Verb") {
count = count + 1
}
flag = False
if(X.Word ends with full stop) {
flag = True
}
```