1. What is the time complexity of the Closest-Pair problem using the Divide and Conquer approach?
2. What is the main idea behind the Convex-Hull problem using Divide and Conquer?
3. What is the time complexity of Insertion Sort in the worst case?
4. Which of the following is true about Depth-First Search (DFS)?
5. Which of the following is true about Breadth-First Search (BFS)?
6. What is the time complexity of DFS and BFS for a graph with \( V \) vertices and \( E \) edges?
7. What is the purpose of finding Connected Components in a graph?
8. Which of the following is true about Topological Sort?
9. What is the time complexity of Topological Sort using DFS?
10. Which of the following algorithms is used to find Connected Components in an undirected graph?
11. What is the space complexity of DFS?
12. Which of the following is true about BFS?
13. What is the time complexity of the brute-force Convex-Hull algorithm?
14. Which of the following is a disadvantage of the Divide and Conquer approach for the Closest-Pair problem?
15. Which of the following is true about Insertion Sort?