Question 36
Select all true statements about the update operation. (select 2)
Question 37
Suppose you have a books collection with title field. Which of the following queries will return all books with a title ending in 'ian'?
Question 38
We have an accounts collection with only one document: { _id: 54657, account_id: 557378, products: [ 'InvestmentStock', 'Commodity', 'CurrencyService' ] } We need to use Aggregation Framework to unwind the products Array to obtain new documents with only one product per document (see below). Expected output: [ { _id: 54657, account_id: 557378, products: 'InvestmentStock' }, { _id: 54657, account_id: 557378, products: 'Commodity' }, { _id: 54657, account_id: 557378, products: 'CurrencyService' } ] Which pipeline should you use?
Question 39
Use case: e-learning platform Which of the following scenarios is the best candidate to use the Subset Pattern?
Question 40
Select all true statements regarding to replication in MongoDB.
