Question 51

Select all true statement regarding to the MongoDB (BSON, JSON). (select 3)
  • Question 52

    What do you mean by collection scan during query execution?
  • Question 53

    In your database there is a collection named companies with the following document structure: { name: 'Wize', relationships: [ { is_past: false, title: 'Head of Product', person: { first_name: 'Ethan', last_name: 'Smith', permalink: 'ethan-smith' } }, { is_past: true, title: 'Director, Business Development', person: { first_name: 'Stephanie', last_name: 'Quay', permalink: 'stephanie-quay' } }, { is_past: true, title: 'Sr. Engineer', person: { first_name: 'Stefan', last_name: 'Antonowicz', permalink: 'stefan-antonowicz' } } ] } Which of the following queries should you use to extract all companies that have "Co-Founder" title in relationships field (Array)?
  • Question 54

    Which cursor method should you use to specify the maximum number of documents returned?
  • Question 55

    What is the built-in database called local in MongoDB for?