InterviewSolution
Saved Bookmarks
| 1. |
State true or false: The fanout of nodes can be increased by using a technique called _________(a) Prefix compression(b) Postfix compression(c) Prefix expansion(d) Postfix expansion |
|
Answer» The correct answer is (a) Prefix compression Best explanation: The fanout of nodes can be increased by using a technique called prefix compression. In this, we do not store the entire value of the search key at the node. We only store the prefix of the search key. |
|