
What expression will remove only one document with “status”:“A” in the inventory collection?
{ _id: 1, firstName: “Person1”, company: “CompanyA”, active: false }
{ _id: 2, firstName: “Person2”, company: “CompanyB”, active: false }
{ _id: 3, firstName: “Person3”, company: “CompanyC”, active: true }
{ _id: 4, firstName: “Person4”, company: “CompanyD”, active: true }
What code block should be used to delete the third document from a MongoDB collection in Java?
How is Data Explorer used to find all restaurants whose name is “The Rose Palace” in the Restaurants database?

What statement correctly updates a single document in MongoDB?