A-Level Computer Science Data Structures Quiz

Quiz
•
Computers
•
12th Grade
•
Hard
Alexander Woolston
Used 2+ times
FREE Resource
14 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
A software system manages a large number of tasks that need to be processed in the order they arrive. However, some tasks are designated as 'high priority' and should be processed before any 'normal priority' tasks, regardless of their arrival time. Within the high-priority tasks themselves, the processing order is still based on arrival time. Which of the following data structures, or combination of data structures, would be most appropriate to manage the tasks in this system efficiently?
A single queue
A stack
A priority queue
Two queues, one for high priority and one for normal priority, processed in that order.
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Consider a scenario where you are implementing an 'undo' functionality in a text editor. You need to store the sequence of actions performed by the user so that they can be reversed one by one, starting with the most recent action. Which data structure is the most suitable for this purpose?
A queue
A linked list
A stack
An array
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
A directed graph is being used to represent a network of one-way streets in a city. You need to find the shortest path from a starting intersection to all other reachable intersections. Which algorithm is most appropriate for this task when edge weights represent the time taken to travel along a street (assume non-negative weights)?
Depth-First Search (DFS)
Breadth-First Search (BFS)
Dijkstra's Algorithm
A* Search
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
You are designing a system to store a dynamic collection of elements where insertions and deletions need to be performed frequently and efficiently at arbitrary positions within the collection. The order of elements is important. Which data structure would be the most efficient choice in terms of time complexity for these operations in the average case, compared to a static array?
Stack
Queue
Singly Linked List
Hash Table
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
A binary search tree is a hierarchical data structure that allows for efficient searching, insertion, and deletion of elements while maintaining a sorted order. Which of the following statements about a binary search tree is FALSE?
The left subtree of a node contains only nodes with keys less than the node's key.
The right subtree of a node contains only nodes with keys greater than the node's key.
A pre-order traversal visits the root node, then the left subtree, then the right subtree.
In the worst-case scenario, searching in a binary search tree can always achieve a time complexity of O(log n).
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
A hash table is used to store key-value pairs, providing fast average-case lookups. However, collisions can occur when two different keys hash to the same index. Which of the following is a common method for resolving collisions in a hash table?
Rehashing the entire table when a collision occurs.
Using a separate array to store colliding elements at the same index.
Storing colliding elements in a linked list at the calculated index (chaining).
Discarding the new element that causes a collision.
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Consider a circular queue implemented using a fixed-size array. The queue has a front pointer and a rear pointer. The queue is initially empty. Elements are enqueued and dequeued. Which condition correctly indicates that the circular queue is FULL?
front == rear
front == (rear + 1) mod size
rear == (front - 1) mod size
front > rear
Create a free account and access millions of resources
Similar Resources on Wayground
14 questions
Binary Tree Quiz

Quiz
•
12th Grade
12 questions
Praktisi Mengajar - Python

Quiz
•
University
15 questions
Knowledge Knockout[Quiz Round](2nd-4th years)

Quiz
•
University
10 questions
Benefits of JQuery

Quiz
•
University
16 questions
Y13 Graph Traversal

Quiz
•
9th Grade - University
10 questions
Binary Search Tree Traversal Quiz

Quiz
•
12th Grade
15 questions
Quiz 3 - 61_O

Quiz
•
University
15 questions
special exam in BINARY TREE

Quiz
•
University
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
9/11 Experience and Reflections

Interactive video
•
10th - 12th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
9 questions
Tips & Tricks

Lesson
•
6th - 8th Grade
Discover more resources for Computers
20 questions
Digital Citizenship

Quiz
•
8th - 12th Grade
35 questions
Computer Baseline Examination 2025-26

Quiz
•
9th - 12th Grade
13 questions
Problem Solving Process

Quiz
•
9th - 12th Grade
10 questions
Understanding Algorithms with Pseudocode and Flowcharts

Interactive video
•
9th - 12th Grade
19 questions
AP CSP Unit 1 Review (code.org)

Quiz
•
10th - 12th Grade