Q8Comprehension4 Marks24 Dec 2023
Passage
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 == 'M'){
B = B + 1
}
}
Move X to Table 2
}
```
What will A represent at the end of the execution?