1. What is the first step in the Divide-and-Conquer strategy?
2. Which of the following is NOT a step in the Divide-and-Conquer technique?
3. What is the first step in the Closest-Pair algorithm using Divide-and-Conquer?
4. In the Closest-Pair algorithm, how many points in the vertical strip need to be inspected for each point?
5. What is the time complexity of the Closest-Pair algorithm (excluding sorting)?
6. What is the Convex Hull of a set of points?
7. What is the worst-case time complexity of the brute-force Convex Hull algorithm?
8. Which of the following is true about the Convex Hull algorithm?
9. What is the key operation in Insertion Sort?
10. After the ith iteration of Insertion Sort, what is true about the array?
11. What is the worst-case time complexity of Insertion Sort?
12. Which algorithm design strategy is used in both the Closest-Pair and Convex Hull problems?
13. What is the time complexity of sorting points by x-coordinate in the Closest-Pair algorithm?
14. Which of the following problems can be solved using Divide-and-Conquer?
15. What is the purpose of the vertical strip in the Closest-Pair algorithm?