adplus-dvertising
frame-decoration

Question

Which of the following query selects documents in the records collection that match the condition { “user_id”: { $lt: 42 } }?

a.

db.records.findOne( { “user_id”: { $lt: 42 } }, { “history”: 0 } )

b.

db.records.find( { “user_id”: { $lt: 42 } }, { “history”: 0 } )

c.

db.records.findOne( { “user_id”: { $lt: 42 } }, { “history”: 1 } )

d.

db.records.select( { “user_id”: { $lt: 42 } }, { “history”: 0 } )

Answer: (b).db.records.find( { “user_id”: { $lt: 42 } }, { “history”: 0 } )

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which of the following query selects documents in the records collection that match the condition { “user_id”: { $lt: 42 } }?

Similar Questions

Discover Related MCQs

Q. Which of the following functionality is used for aggregation framework?

Q. To suppress the _id field from the result set, specify _________ in the projection document.

Q. Which of the following is not a projection operator?

Q. Which of the following flag can be set by mongo shell?

Q. Point out the correct statement.

Q. Which of the following will display complete list of available cursor flags?

Q. To describe the message structure, a ________ like struct is used.

Q. Point out the wrong statement.

Q. ______________ specifies the number of documents to return in each batch of the response from the MongoDB instance.

Q. The __________ method returns a document that includes a metrics field.

Q. ____________ is a client or database-generated identifier that uniquely identifies this message.

Q. Which of the following operator is not very selective?

Q. An index cannot cover a query on a _______ collection when run against a mongos if the index does not contain the shard key.

Q. ___________ concern describes the guarantee that MongoDB provides when reporting on the success of a write operation.

Q. Point out the correct statement.

Q. When inserts, updates and deletes have a _________ write concern, write operations return quickly.

Q. The mongo shell and the MongoDB drivers use __________ as the default write concern.

Q. Point out the wrong statement.

Q. _____________ is used to control mongod commits in the journal.

Q. Clients can set a __________ value as part of a replica acknowledged write concern.