CS Electrical And Electronics
@cselectricalandelectronics

What does the following command do? db.employees.find().skip(5).limit(5)

All QuestionsCategory: Data ScienceWhat does the following command do? db.employees.find().skip(5).limit(5)
Anonymous asked 3 years ago

Options:

  1. shows just the next five documents
  2. Skips first five documents and then shows just the next five documents
  3. Skips the first five documents and then shows the sixth one five times
1 Answers
Anonymous answered 3 years ago

The correct answer is:

  1. Skips first five documents and then shows just the next five documents