

MCQOPTIONS
Saved Bookmarks
1. |
Consider a max heap, represented by the array: 40, 30, 20, 10, 15, 16, 17, 8, 4.ArrayIndex012345678Value4030201015161784 Now consider that a value 35 is inserted into this heap. After insertion, the new heap is |
A. | 40, 30, 20, 10, 15, 16, 17, 8, 4, 35 |
B. | 40, 35, 20, 10, 30, 16, 17, 8, 4, 15 |
C. | 40, 30, 20, 10, 35, 16, 17, 8, 4, 15 |
D. | 40, 35, 20, 10, 15, 16, 17, 8, 4, 30 |
Answer» C. 40, 30, 20, 10, 35, 16, 17, 8, 4, 15 | |