Sorting
October 28, 2023Sorting
October 28, 2023Sorting
| Question 68 |
What is the advantage of bubble sort over other sorting techniques?
| It is faster | |
| Consumes less memory | |
| Detects whether the input is already sorted
| |
| All of the options |
Question 68 Explanation:
The options are not appropriate.
Option-A is definitely FALSE.
Option-B is not an advantage when compared to other sorting techniques.
Option-C Bubble sort will give the best case O(n) when elements are in sorted order.
Option-A is definitely FALSE.
Option-B is not an advantage when compared to other sorting techniques.
Option-C Bubble sort will give the best case O(n) when elements are in sorted order.
Correct Answer: C
Question 68 Explanation:
The options are not appropriate.
Option-A is definitely FALSE.
Option-B is not an advantage when compared to other sorting techniques.
Option-C Bubble sort will give the best case O(n) when elements are in sorted order.
Option-A is definitely FALSE.
Option-B is not an advantage when compared to other sorting techniques.
Option-C Bubble sort will give the best case O(n) when elements are in sorted order.
