Question 10
The following pseudocode is executed using the "Library" dataset. What will L represent at the end of execution?
D = { }while (Table 1 has more rows) { Read the first row X from Table 1 if (isKey( D, X.Author )) { if ( X.Year < D [X.Author]) { D [X.Author] = X.Year } } else { D [X.Author] = X.Year } Move X to Table 2}
A = 0, L = [ ]foreach k in keys(D) { if (D[k] == A) { L = L ++ [k] } if (D[k] > A) { A = D[k] L = [k] }}List of authors who published maximum number of books
List of authors who published the first book in the most recent year
List of authors who published maximum number of books in a year
List of authors who published maximum number of books in the most recent year
None of these