A balanced order -n mult'way search tree in which each non-root node contains atleast ________ keys is called a B-tree of order n?
A balanced order -n multiway search tree in which each non-root node contains at least (n-1)/2 keys is called a B-tree of order n.
B tree is a self-balancing search tree and contains multiple nodes which keep data in sorted order. Each node has 2 or more children and consists of multiple keys.
B-tree is essentially just a sorted list of keys, which are {data, pointer or row locator} combinations. The actual structure of a B-tree consists of a number of nodes stored as items in the B-tree's file. Each node contains a portion of the sorted list of keys in the B-tree, along with pointers to other nodes.