MCQ IN COMPUTER SCIENCE & ENGINEERING

COMPUTER SCIENCE AND ENGINEERING

ALGORITHMS

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Which of these is NOT a Sort algorithm
A
Binary
B
Merge
C
Bubble
D
Insertion
Explanation: 

Detailed explanation-1: -Thus merge sort is not an in place sorting algorithm.

Detailed explanation-2: -Binary insertion sort is a sorting algorithm similar to insertion sort, but instead of using linear search to find the position where the element should be inserted, we use binary search. Thus, we reduce the number of comparisons for inserting one element from O(N) to O(log N).

Detailed explanation-3: -The Correct Answer Is: C. merge sort.

Detailed explanation-4: -When it comes to Computer Science, there are four main algorithms that you need to have in your arsenal. Bubble sort, selections sort, merge sort, and quickSort.

There is 1 question to complete.