Q54.What will `count` represent at the end of execution if the missing code is filled by:
```
if(flag and X.PartOfSpeech == "Noun") {
count = count + 1
}
flag = False
if(X.Word ends with full stop) {
flag = True
}
```@passage
Save
Read
Check
Details
Q54
2 Apr 2023
Q54.What will `count` represent at the end of execution if the missing code is filled by:
```
if(flag and X.PartOfSpeech == "Noun") {
count = count + 1
}
flag = False
if(X.Word ends with full stop) {
flag = True
}
```@passage