Question: You have a collection of thousands of students. You'd like to return the second set of 20 documents from the sorted collection. What is the proper order in which to apply the operations?

  1. limit, skip, sort
  2. sort, limit, skip
  3. limit, sort, skip
  4. sort, skip, limit

Answer: The correct answer of the above question is Option D:sort, skip, limit