Q11Single correct3 Marks30 Apr 2023
The following pseudocode is executed using the "Library" dataset. What will B represent at the end of the execution?
```
A = 0, B = 0
while(Table 1 has more rows){
Read the first row X in Table 1
if(X.Language == 'English'){
A = A + 1
}
else{
if(X.Language == 'English' or X.Genre == 'Fiction'){
B = B + 1
}
}
Move X to Table 2
}
```