Question:

Which of the following is not the application of Divide and Conquer technique?

Show Hint

Divide and Conquer algorithms involve breaking down a problem into smaller subproblems. Linear Search does not follow this approach.
Updated On: Sep 25, 2025
  • Quick Sort
  • Strassen's Matrix Multiplication
  • Linear Search
  • Binary Search
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is C

Solution and Explanation


 

Step 1: Understand Divide and Conquer technique. 
The Divide and Conquer technique involves dividing the problem into smaller subproblems, solving each subproblem, and then combining their solutions to solve the original problem.

Step 2: Evaluate each option. 
- **Quick Sort:** A sorting algorithm based on Divide and Conquer where the array is partitioned into smaller sub-arrays. 

- **Strassen's Matrix Multiplication:** This algorithm uses Divide and Conquer to multiply matrices efficiently. 

- **Linear Search:** A search algorithm that scans through the elements linearly and does not use Divide and Conquer. 

- **Binary Search:** A Divide and Conquer technique where the search space is halved in each step.

Step 3: Conclusion. 
The correct answer is (3) **Linear Search** since it does not use Divide and Conquer.

Was this answer helpful?
0
0

Questions Asked in CUET PG exam

View More Questions