Write the MongoDB equivalent of the following SQL query:

SELECT * FROM users WHERE status = "A" OR age = 50

db.users.find( { { status: "A" } ,{ age: 50 } } )
db.users.find( { $or: { { status: "A" } ,{ age: 50 } } } )
db.users.find({ [$or: { status: "A" } ,{ age: 50 } ] } )
db.users.find({ $or: [ { status: "A" } ,{ age: 50 } ] } )
Verified Answer
Correct Option - d

To get all Infosys Certified Mongo Developer Exam questions Join Telegram Group https://bit.ly/infy_premium_group

Telegram

We're passionate about offering best placement materials and courses!! A one stop place for Placement Materials. We daily post Offcampus updates and Placement Materials.

Qtr No. 213, New Town Yehlanka Indore 454775

admin@prepflix.in

Updated on Thu, 31 Jul 2025