C100DEV 試験問題を無料オンラインアクセス
試験コード: | C100DEV |
試験名称: | MongoDB Certified Developer Associate Exam |
認定資格: | MongoDB |
無料問題数: | 253 |
更新日: | 2025-09-03 |
You want to execute the following query quite often in your application: db.hotels.aggregate([ { "$match": { "stars": { "$gt": 4.5 } } }, { "$sort": { "stars": 1 } } ]) Your collection doesn't have any additional indexes. Which index should you create to support this query?
Data modeling. You are considering the use of nesting or the references in your data model. Data read operations must be fast. Which option would be more appropriate?
You are working in a team on a certain application in the gaming sector. Queries similar to the following are quite often executed by your application. db.gamers.find( { level: 10, is_active: true } ) How can you speed up the execution of similar queries? Choose the best option.