NEW
Font size
WorksheetsSort and search algorithms
Total questions: 10
Worksheet time: 5mins
What is the most efficient sorting algorithm for the value 94714?
Bubble
Insertion
Merge
Binary
What is the average number of items that you will need to look at when performing a linear search on a list with 550 items?
256
225
550
215
What is the easiest sorting algorithm to program?
Linear
Binary
Bubble
Psuedo
Which sorting algorithm does python use?
Quicksort
Merge Sort
Insertion sort
Timsort
What is the easiest searching algorithm to program?
Linear
Bubble
Binary
Flowchart
Which sorting algorithm would be the most efficient in sorting the value 31475?
Bubble Sort
Merge Sort
Binary Sort
Insertion Sort
What is the most efficient sort for a list with 500 values in the options below?
Bubble Sort
Binary Sort
Insertion Sort
Merge Sort
How do you sort a list in python?
Sort []
sortalgo ()
Sort ()
sort.list ()
What is an algorithm?
A sequence of instructions to perform a task
A flowchart
A code that tells you things
Pseudo Code
What is the maximum number of items you will need to look at when performing a binary search on a list with 12 items?
13
6
5
4
