Eduqas A-Level Computer Science data structures and algorithms overview quiz quiz
13questions. Pick an answer and you'll see why right away.
An integer array based at address stores -byte elements. What is the address of element ?
Which structure follows last-in, first-out (LIFO) behaviour?
In a circular queue of size , the rear pointer is at index . After one more enqueue, the rear index becomes
What is the main advantage of a linked list over a static array?
An in-order traversal of a binary search tree outputs the keys in
Which graph representation is most space-efficient for a sparse graph?
A collision in a hash table occurs when
What is the time complexity of binary search, and what does it require?
A breadth-first traversal of a graph uses which auxiliary data structure?
After one complete pass of a bubble sort (ascending), which element is guaranteed to be in its final position?
Which pair of sorting algorithms both run in on average?
Why does a recursive function need a base case?
Order these complexities from most to least efficient for large : , , , .