Complete the sentence to describe a B+ tree leaf node.
In a B+ tree, all data records are stored in the [1] nodes.
In a B+ tree, all actual data records are stored in the leaf nodes, while internal nodes only store keys for navigation.
Complete the sentence to explain the order of keys in B+ tree nodes.
Keys within each node of a B+ tree are stored in [1] order to allow efficient searching.
Keys in B+ tree nodes are stored in ascending order to enable binary search and efficient navigation.
Fix the error in the statement about B+ tree node capacity.
Each node in a B+ tree can have at most [1] children, where this number is called the order of the tree.
The maximum number of children a node can have in a B+ tree is called the order of the tree.
Fill both blanks to describe the linking of leaf nodes in a B+ tree.
Leaf nodes in a B+ tree are linked together using [1] pointers to allow [2] traversal.
Leaf nodes are connected by sibling pointers to enable sequential traversal of all data records.
Fill all three blanks to complete the dictionary comprehension that creates a B+ tree node summary.
node_summary = { [1]: [2] for [3] in node.keys() }This comprehension creates a dictionary where each key is the uppercase version of the original key, and the value is the original key itself, iterating over all keys in the node.