Point out the wrong statement.
(a) sort() modifier sorts the results by age in ascending order
(b) Queries in MongoDB return all fields in all matching documents by default
(c) To scale the amount of data that MongoDB sends to applications, include a projection in the queries.
(d) None of the mentioned
(a) sort() modifier sorts the results by age in ascending order
(b) Queries in MongoDB return all fields in all matching documents by default
(c) To scale the amount of data that MongoDB sends to applications, include a projection in the queries.
(d) None of the mentioned
Right choice is (c) To scale the amount of data that MongoDB sends to applications, include a projection in the queries.
For explanation: By projecting results with a subset of fields, applications reduce their network overhead and processing requirements.