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