Direction: Choose the correct option
Q1.
Which method inserts a single document into a collection?
Direction: Choose the correct option
Q2.
How do you insert multiple documents at once?
Direction: Choose the correct option
Q3.
What does `db.collection.insertOne()` return?
Direction: Choose the correct option
Q4.
What happens if you try to insert a document without an `_id` field?
Direction: Choose the correct option
Q5.
Given `db.users.insertMany([{name: 'Alice'}, {name: 'Bob'}])`, how many documents are inserted?
