Multiple choice

The Quick Sort algorithm is based upon the

  1. backtracking

  2. greedy

  3. dynamic programing

  4. linear programing

  5. divide and conquer

Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

Divide and Conquer is an algorithm design paradigm, based on recursion and is used for the Quicksort in which the original problem is divided in to the sub problems and are solved recursively.