How do you create a database in MongoDB?
use database_name;
How do you switch databases?
use database_name;
What are tables in MongoDB called?
Collections
What are records in MongoDB called?
Documents
How do you display all the documents in a collection?
db.collection_name.find();
How do you see all the databases in your MongoDB server?
show databases;
How do you end a session in MongoDB?
quit()
How do you see all the collections within a database?
show collections;
How do you create a collection?
db.collection_name.insertOne();
How are document IDs created in MongoDB?
MongoDB automatically generates IDs for each document.