MongoDB: Queries II (MCQ)
MongoDB: Queries II (MCQ)
Consider the following documents in the inventory collection. Which of the following queries will not update any of the documents mentioned above?
{ item: "canvas", qty: 100, size: { h: 28, w: 35.5, uoms: ["cm"] }, status: "A" },
{ item: "journal", qty: 25, size: { h: 14, w: 21, uoms: ["cm"] }, status: "A" }
Post a Comment