Q11.The following pseudocode is executed using the "Scores" dataset.
```
A = 0, B = 0
while(Table 1 has more rows){
Read the first row X from Table 1
if(X.Gender == 'M' and X.Total > 250){
A = A + 1
if(X.Total < 200){
B = B + 1
}
}
Move X to Table 2
}
```
Which of the following statements is/are correct?
Save
Check
Details
Q11
13 Jul 2025
Q11.The following pseudocode is executed using the "Scores" dataset.
```
A = 0, B = 0
while(Table 1 has more rows){
Read the first row X from Table 1
if(X.Gender == 'M' and X.Total > 250){
A = A + 1
if(X.Total < 200){
B = B + 1
}
}
Move X to Table 2
}
```
Which of the following statements is/are correct?