Question 3
The following pseudocode is executed using the "Library" dataset. What does (count – A+B) represent at the end of execution?
A = 0, B = 0, count = 0while (Table 1 has more rows) { Read the first row X from Table 1 if (X.Genre == "English") { A = A + 1 if (X.language == "Fiction") { B = B + 1 } } count = count + 1 Move the row X to Table 2}Total number of books.
Number of non fiction books
Number of non fiction books other than in English language
Number of books other than in English language + Number of fiction books in English.