Complete the code to find documents where the field "active" is true.
db.users.find({"active": [1] })The Boolean value true is used without quotes to query documents where the field is true.
Complete the code to find documents where the field "deleted" is false.
db.records.find({"deleted": [1] })The Boolean value false is used without quotes to find documents where the field is false.
Fix the error in the query to find documents where "status" is null.
db.orders.find({"status": [1] })Use null without quotes to query documents where the field is null.
Fill both blanks to find documents where "verified" is true and "deleted" is null.
db.users.find({"verified": [1], "deleted": [2] })Use Boolean true for "verified" and null for "deleted" without quotes.
Fill all three blanks to find documents where "active" is false, "deleted" is null, and "confirmed" is true.
db.accounts.find({"active": [1], "deleted": [2], "confirmed": [3] })Use Boolean false for "active", null for "deleted", and Boolean true for "confirmed" without quotes.