Valid C100DEV Dumps shared by ExamDiscuss.com for Helping Passing C100DEV Exam! ExamDiscuss.com now offer the newest C100DEV exam dumps, the ExamDiscuss.com C100DEV exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com C100DEV dumps with Test Engine here:
We have the following schema for a movies collection: { _id: ObjectId, title: String, genres: Array, languages: Array, year: 32-bit integer } And the following index on the movies collection: { title: 1 } Which of the following queries will use the given index to perform the sorting stage?
Correct Answer: B,C,D
db.movies.find( { genres: "Drama" } ).sort( { title: 1 } ) Yes, in this case the index will be used to retrieve the sorted documents and then it will filter the movies matching the genre. https://docs.mongodb.com/manual/indexes/