In a MongoDB database, we have a collection named “user”. Wh…

In a MongoDB database, we have a collection named “user”. What does the following command return?            db.user.find(              { “age”: {$eq: 33} },              { name:1, email:1 }            ).sort(              {age:-1,name:1}