Q54.The following pseudocode is executed using the "Scores" dataset. What will `A` represent at the end of the execution?
```
A = 0
while(Table 1 has more rows){
Read the first row X in Table 1
B = True
if(X.Physics >= 70){
B = False
}
if(X.Chemistry >= 70){
B = False
}
if(X.Mathematics >= 70){
B = False
}
if(B){
A = A + 1
}
Move X to Table 2
}
```
Save
Check
Details
Q54
5 Jun 2022
Q54.The following pseudocode is executed using the "Scores" dataset. What will `A` represent at the end of the execution?
```
A = 0
while(Table 1 has more rows){
Read the first row X in Table 1
B = True
if(X.Physics >= 70){
B = False
}
if(X.Chemistry >= 70){
B = False
}
if(X.Mathematics >= 70){
B = False
}
if(B){
A = A + 1
}
Move X to Table 2
}
```