Q13Comprehension3 Marks7 Aug 2022
Passage
Based on the above data, answer the given subquestions. The following pseudocode is executed using the "Scores" dataset.
```
A = 0, B = 0
while(Table 1 has more rows){
Read the first row X in Table 1
Flag = False
if(X.Gender == 'M' or X.Physics > 90){
Flag = True
}
if(not Flag){
A = A + 1
if(X.Gender == 'F'){
B = B + 1
}
}
Move X to Table 2
}
```
What will A represent at the end of the execution?