Q5.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
}
```@passage
Save
Read
Check
Details
Q5
1 Dec 2024
Q5.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
}
```@passage