I found it useful to focus on top N questions only and to track it easily it helps to see only that much on a screen.
Go to the listing you're interested in, press F12 and do document.querySelectorAll('tbody tr:nth-child(n+101)').forEach( function(entry) { entry.style.display='none' } ) in console to get only top 100 interview questions.