0
0
MongoDBquery~5 mins

Boolean and null types in MongoDB - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What values can a Boolean type hold in MongoDB?
A Boolean type in MongoDB can hold only two values: true or false. These represent simple yes/no or on/off states.
Click to reveal answer
beginner
What does the null type represent in MongoDB?
The null type in MongoDB represents the absence of a value or a missing field. It means the field exists but has no value assigned.
Click to reveal answer
intermediate
How do you query documents where a field is null in MongoDB?
Use { fieldName: null } in your query to find documents where fieldName is either null or does not exist.
Click to reveal answer
beginner
How do you query documents where a Boolean field is true?
Use { fieldName: true } in your query to find documents where fieldName is exactly true.
Click to reveal answer
intermediate
What is the difference between a field set to null and a field that does not exist in MongoDB?
A field set to null exists in the document but has no value. A field that does not exist is completely missing from the document. Queries for { field: null } match both cases.
Click to reveal answer
Which of the following is a valid Boolean value in MongoDB?
Atrue
B"true"
C1
Dyes
What does a null value mean in a MongoDB document?
AThe field exists but has no value
BThe field is missing
CThe field is set to false
DThe field is set to zero
How do you find documents where a Boolean field is false?
A{ fieldName: 0 }
B{ fieldName: null }
C{ fieldName: false }
D{ fieldName: 'false' }
Which query matches documents where a field is either null or missing?
A{ fieldName: '' }
B{ fieldName: false }
C{ fieldName: undefined }
D{ fieldName: null }
If a field is missing in a document, what will a query { fieldName: true } return?
ADocuments where fieldName is false
BDocuments where fieldName is true
CDocuments where fieldName is null
DDocuments where fieldName is missing
Explain how Boolean and null types are used in MongoDB documents and how to query them.
Think about yes/no values and empty or missing fields.
You got /4 concepts.
    Describe the difference between a field set to null and a field that does not exist in MongoDB.
    Consider presence versus absence of the field.
    You got /3 concepts.