The below example can be used to create a collection to store the ___

32. The below example can be used to create a collection to store the ___.

db.Employee.insert   
(
    {
        ...
        ...
    }
)       
  1. Employee records
  2. Students record
  3. Product records
  4. All of the mentioned above

Answer: A) Employee records

Explanation:

db.Employee. Insert collections can be used to store information about employees. The quickest and most straightforward method of creating a collection is to insert a record (which is nothing more than a document containing Field names and Values) into an existing collection. This means that if the collection does not already exist, one will be created.

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.