0
0
MongoDBquery~10 mins

Atlas cluster creation basics in MongoDB - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a new cluster with the specified name.

MongoDB
atlas clusters create [1] --region US_EAST_1
Drag options to blanks, or click blank then click option'
AmyCluster
BlistClusters
CdeleteCluster
DupdateCluster
Attempts:
3 left
💡 Hint
Common Mistakes
Using commands like listClusters or deleteCluster instead of the cluster name.
Omitting the cluster name argument.
2fill in blank
medium

Complete the code to specify the cluster tier when creating a cluster.

MongoDB
atlas clusters create myCluster --tier [1]
Drag options to blanks, or click blank then click option'
AM50
BM0
CM10
DM200
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing M0 when a paid tier is required.
Using an invalid tier name.
3fill in blank
hard

Fix the error in the command to create a cluster with the correct region option.

MongoDB
atlas clusters create myCluster --region [1]
Drag options to blanks, or click blank then click option'
Aus-east-1
BUS_EAST_1
CUSEAST1
Dus east 1
Attempts:
3 left
💡 Hint
Common Mistakes
Using dashes or spaces instead of underscores.
Using uppercase without underscores.
4fill in blank
hard

Fill both blanks to create a cluster with the specified name and enable backup.

MongoDB
atlas clusters create [1] --pitEnabled [2]
Drag options to blanks, or click blank then click option'
AmyBackupCluster
Btrue
Cfalse
DbackupEnabled
Attempts:
3 left
💡 Hint
Common Mistakes
Using invalid backup values like 'backupEnabled'.
Omitting the backup option.
5fill in blank
hard

Fill all three blanks to create a cluster with a name, tier, and region.

MongoDB
atlas clusters create [1] --tier [2] --region [3]
Drag options to blanks, or click blank then click option'
AprodCluster
BM30
CUS_WEST_2
DM10
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up tier and region values.
Using invalid region formats.