Q53.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
}
}
```@passage
Save
Read
Check
Details
Q53
2 Apr 2023
Q53.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
}
}
```@passage