Important topic of Data Structure :- Stack Queue Linked List Sorting Heap Tree AVL Tree Hashing C language questions C ++ Language questions campus/interview preparation Objective type questions or multiple choice questions (MCQ) are often asked in various exams, including job recruitment tests. It also helps in understanding language constructs, syntax and fundamental rules. click the link given in above list to go to that topic. Heap in Data Structure 1. Which of the following sequences of array elements forms a heap? (a) {23, 17, 14, 6, 13, 10, 1, 12, 7, 5} (b) {23, 17, 14, 6, 13, 10, 1, 5, 7, 12} (c) {23, 17, 14, 7, 13, 10, 1, 5, 6, 12} (d) {23, 17, 14, 7, 13, 10, 1, 12, 5, 7} Answer (c) Heap has the following two properties:- 1) All the levels are filled in the order i.e. all the levels have maximum number of nodes except possibly the last level. In the last level all...