MCQOPTIONS
Saved Bookmarks
This section includes 7 Mcqs, each offering curated multiple-choice questions to sharpen your Bogosort Multiple Choice knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
What is the average case time complexity of bogosort? |
| A. | O(n<sup>2</sup>) |
| B. | O(n*n!) |
| C. | O(infinity) |
| D. | O(n log n) |
| Answer» C. O(infinity) | |
| 2. |
Sleep sort should be preferred over bogosort as it has better time complexity. |
| A. | true |
| B. | false |
| Answer» C. | |
| 3. |
What is the worst case time complexity of bogosort? |
| A. | O(n<sup>2</sup>) |
| B. | O(n*n!) |
| C. | O(infinity) |
| D. | O(n log n) |
| Answer» D. O(n log n) | |
| 4. |
What is the best case time complexity of bogosort? |
| A. | O(n<sup>2</sup>) |
| B. | O(n) |
| C. | O(n log n) |
| D. | O(1) |
| Answer» C. O(n log n) | |
| 5. |
What is the auxiliary space requirement of bogosort? |
| A. | O(n) |
| B. | O(1) |
| C. | O(log n) |
| D. | O(n log n) |
| Answer» C. O(log n) | |
| 6. |
Bogosort works by __________ |
| A. | generating random permutations of its input |
| B. | partitioning the array |
| C. | dividing the value of input elements |
| D. | generating permutations according to the value of first element of array |
| Answer» B. partitioning the array | |
| 7. |
Which of the following is not an alternative name of bogosort? |
| A. | stupid sort |
| B. | permutation sort |
| C. | donkey sort |
| D. | monkey sort |
| Answer» D. monkey sort | |