In our posts collection, which command can be used to find all the posts whose author names begin lie between “A” and “C” in dictionary order?

In our posts collection, which command can be used to find all the posts whose author names begin lie between “A” and “C” in dictionary order?
db.posts.find( { post_author : { $gte : “A” , $lte : “C” } } );
Well Done. Your Answer is Correct Keep it Up!
db.posts.find( { post_author : { $gte : “C” , $lte : “A” } } );
db.posts.find( { post_author : { $gt : “A” , $lt : “C” } } );
This type of search is not supported by MongoDB. $lt and $gt operators are applicable only for numeric values.

In a sharded replica set environment, w defines the level and kind of write concern. Which of the following values of w specifies to return success only after a majority of voting members have acknowledged?

In a sharded replica set environment, w defines the level and kind of write concern. Which of the following values of w specifies to return success only after a majority of voting members have acknowledged?
majority
Well Done. Your Answer is Correct Keep it Up!
major
n
m

Which option should be used with findAndModify() command to return the modified document instead of the pre-modification document?

Which option should be used with findAndModify() command to return the modified document instead of the pre-modification document?
Set {new : true}
Well Done. Your Answer is Correct Keep it Up!
findAndModify by default returns the pre-modification document
Use the POST version of findAndModify called findAndModifyPost
None of the options are correct
Page 1 of 3
1 2 3