

InterviewSolution
Saved Bookmarks
1. |
Which of the following should is used to check whether collection is capped or not?(a) isCAP()(b) isCapped()(c) isColl()(d) none of the mentioned |
Answer» The correct option is (b) isCapped() To explain: Use the isCapped() method to determine if a collection is capped, as: db.collection.isCapped(). |
|