Question
Which all statements are correct about
SortingSolution
Option 5: only b and d Explanation
- Bubble sort has O(n^2) as best case time complexity
- This statement is incorrect . The best case time complexity for Bubble Sort is O(n) , which occurs when the array is already sorted. In such cases, Bubble Sort can detect the sorted array early and terminate.
- Selection sort has O(n^2) as best case time complexity
- This statement is correct . Selection Sort always has a time complexity of O(n^2) , regardless of the initial ordering of the elements. This is because it always goes through the entire list to find the minimum element for each position.
- Insertion sort has O(n^2) as best case time complexity
- This statement is incorrect . The best case time complexity for Insertion Sort is O(n) , which occurs when the array is already sorted. In such cases, each insertion requires only one comparison.
- Radix sort has O(n+K) as best case time complexity
- This statement is correct . Radix Sort has a time complexity of *O(d(n + k))**, where d is the number of digits in the largest number and k is the range of the digit (base of the number system). In many cases, it is simplified to O(n + k) if the number of digits d is considered a constant.
- Selection Sort has O(n^2) as its best case time complexity.
- Radix Sort has O(n + k) as its best case time complexity
The series given below contains a sequence of numbers. Accordingly identify the incorrect number.
85, 84, 81, 88, 77, 92, 72
147 138 120 93 ? 12
...12 10 13 18.5 25.50 ...
25, 200, 40, ?, 64, 512
21, 22, 48, 153, 628, ?
102, 246, 442, 698, 1022, ?
2 3 3 ? 49 254
...In the question, three series I, II and III are given. Find the value of x, y and z to establish the correct relation among them and choose the correct...
49 121 169 289 361 ?
...0 2 6 12 20 ?
...