Q10Multiple correct4 Marks13 Jul 2025
Using the Library dataset, select the correct code for procedure `filterBooks` that counts books which:
a) Are not written by "Narayan"
b) Were published before 1950
c) Language is "English"
```
A = 0
while(Table 1 has more rows){
Read the first row X in Table 1
A = A + filterBooks(X)
}
```