QUESTION 3
Given a 2D pyramid as shown below, what are the query ranges to search in the B-Tree?
a) p0: [0.1, 0.3], p1: [0.0, 0.1], p2: [0.1, 0.3], p3: [0.1, 0.1]
b) p0: [0.1, 0.3], p1: [1.0, 1.1], p2: [2.1, 2.3], p3: [3.0, 3.1]
c) p0: [0.2, 0.4], p1: [0.0, 0.1], p2: [0.1, 0.3], p3: [0.0, 0.1]
d) p0: [0.0, 0.3], p1: [1.0, 1.1], p2: [2.0, 2.3], p3: [3.0, 3.1]