Sail E0 Webinar
Question
Which query bypasses the first 5 customers and returns the next 10?
Options:
A .  db.customers.find({}, {skip: 5, limit: 10})
B .  db.customers.find({}.page(5).take(10))
C .  db.customers.find({}).skip(5).take(10)
D .  db.customers.find({}).skip(5).limit(10)
Answer: Option D

Submit Your Solution Below and Earn Points !
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers