What does the following command do? db.employees.find().skip(5).limit(5) All Questions › Category: Data Science › What does the following command do? db.employees.find().skip(5).limit(5) 0 Vote Up Vote Down Anonymous asked 3 years ago Options: shows just the next five documents Skips first five documents and then shows just the next five documents Skips the first five documents and then shows the sixth one five times 1 Answers 0 Vote Up Vote Down Anonymous answered 3 years ago The correct answer is: Skips first five documents and then shows just the next five documents