1.

Which of the following line skips the first 5 documents in the bios collection and returns all remaining documents?

A. db.bios.find().limit( 5 )
B. db.bios.find().skip( 1 )
C. db.bios.find().skip( 5 )
D. db.bios.find().sort( 5 )
Answer» D. db.bios.find().sort( 5 )


Discussion

No Comment Found