In a collection that contains 100 post documents, what does the following command do? db. posts. find().skip(5).limit(5)
Skip and limit nullify each other. Hence returning the first five documents.
Skips the first five documents and returns the next five
Limits the first five documents and then return them in reverse order
Skips the first five documents and returns the sixth document five times
Submit