

InterviewSolution
Saved Bookmarks
1. |
Which of the following pattern is best for static trees that do not change?(a) Child(b) Parent(c) Root(d) None of the mentionedThe question was asked in my homework.Asked question is from Model Data for Atomic operations topic in division Data Models of MongoDB |
Answer» CORRECT answer is (d) None of the mentioned The BEST I can explain: The Nested Sets PATTERN provides a fast and efficient solution for finding subtrees but is inefficient for modifying the tree STRUCTURE. |
|