For a given poems collection, chose the option that retrieves the details of the poems with likes greater than 100 but less than 200[exclusive of 100 and 200]

db.poems.find( { likes : { $gte : 100 }, likes : { $lte : 200 } } );
db.poems.find( likes : { $gt : 100 , $lt : 200 } );
db.poems.find( { likes : { $gt : 100 }, likes : { $lt : 200 } } );
db.poems.find( { likes : { $gt : 100 , $lt : 200 } } );
Verified Answer
Correct Option - d

To get all Infosys Certified Mongo Developer Exam questions Join Telegram Group https://rebrand.ly/lex-telegram-236dee

Telegram