Labour Day Special - 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: c4sdisc65

C100DBA PDF

$38.5

$109.99

3 Months Free Update

  • Printable Format
  • Value of Money
  • 100% Pass Assurance
  • Verified Answers
  • Researched by Industry Experts
  • Based on Real Exams Scenarios
  • 100% Real Questions

C100DBA PDF + Testing Engine

$61.6

$175.99

3 Months Free Update

  • Exam Name: MongoDB Certified DBA Associate Exam (Based on MongoDB 4.4)
  • Last Update: May 5, 2024
  • Questions and Answers: 132
  • Free Real Questions Demo
  • Recommended by Industry Experts
  • Best Economical Package
  • Immediate Access

C100DBA Engine

$46.2

$131.99

3 Months Free Update

  • Best Testing Engine
  • One Click installation
  • Recommended by Teachers
  • Easy to use
  • 3 Modes of Learning
  • State of Art Technology
  • 100% Real Questions included

C100DBA Practice Exam Questions with Answers MongoDB Certified DBA Associate Exam (Based on MongoDB 4.4) Certification

Question # 6

Which are the ONLY ways to project portions of an array?

A.

$slice

B.

$

C.

All of the above

D.

$ elemMatch

Full Access
Question # 7

Which operations add new documents to a collection?

A.

Create

B.

update

C.

insert

D.

delete

Full Access
Question # 8

Which command is used to determine storage capacity of specific database?

A.

mongotop

B.

dbstats

C.

mongostat

D.

constats

Full Access
Question # 9

Which is the default mode in which the explain() command runs?

A.

allPlansExecution

B.

customExecutionStats

C.

queryPlanner

D.

executionStats

Full Access
Question # 10

Which of the following collections stores authentication credentials in MongoDB?

A.

test.users

B.

local.users

C.

system.users

D.

users.users

Full Access
Question # 11

Given a collection posts as shown below having a document array comments, which of the following command will create an index on the comment author descending?

C100DBA question answer

A.

db.posts.createIndex({^comments.$.author":-l});

B.

db. posts.createIndex({^comments.author" :1});

C.

db.posts.createIndex({^commerits.author";-!});

Full Access
Question # 12

Mongodb does provide high availability via which option?

A.

Replication

B.

Indexing

C.

Sharding

D.

Journaling

Full Access
Question # 13

What is the use of mongodump and mongorestore tools?

A.

backup mongodb deployment

B.

audit mongodb deployment

C.

performance tune mongodb deployment

D.

replicate mongodb deployments

Full Access
Question # 14

Which option can be used with update command so that a new document gets created if no matching document is found based on the query condition?

A.

upsert command instead of update command

B.

{update: true, insert: true} as the third parameter of update command

C.

This has to be handled in application code (Node.js, PHP, JAVA, C#, etc.) and cannot be handled in mongo shell query

D.

Specify {upsert : true } as the third parameter of update command

Full Access
Question # 15

Which of the following is a valid insert statement in mongodb? Select all valid.

A.

db.test.push({x:2,y:"apple"})

B.

db.test.insert«"x":2, "y":"apple"})

C.

db.test.insert({x:2,y:"apple"})

D.

db.test.insert({x:2},{y:"apple"})

Full Access
Question # 16

What is the maximum size of a MongoDB document

A.

16 MB

B.

12 MB

C.

2 MB

D.

There is no maximum size. It depends on the RAM.

Full Access
Question # 17

What is the first task that a secondary would perform on being prompted by another secondary for an election?

A.

Start the election process for primary

B.

Vote for the first secondary so that it would become the next primary

C.

Vote for itself and then call for election

D.

Connect to primary to confirm its availability

Full Access
Question # 18

Consider that you have a collection called population which has fields state and city. Which of the following query will calculate the population grouped by state and city?

A.

db.population.aggregate( [{ $group: { _id: { state: "$state", city: "$city" },pop: { $pop: 1 } } }] )

B.

db.population.aggregate( [{ $group: { _id: { city: "$city" },pop: { $sum: "$pop" } } }] )Multi Document Transaction is not supported by MongoDB

C.

db.population.aggregate( [{ $group: { _id: { state: Estate", city: "$city" },pop: { $sum: "$pop" } } }] )

D.

db.population.aggregate( [{ $group: { _id: { state: Estate", city: "$city" },pop: { $sum: 1 > > >] )

Full Access
Question # 19

Which of the following statements are true about the $match pipeline operator? Check all that apply.

A.

You should use it early as possible in the pipeline

B.

It can be used as many time as needed.

C.

It has a sintax similar to findQ commands.

Full Access