Data Structures Quiz

Data Structures Quiz

12th Grade

31 Qs

quiz-placeholder

Similar activities

Minecraft

Minecraft

1st Grade - Professional Development

26 Qs

SKT5 : Bab 2 : SQL

SKT5 : Bab 2 : SQL

10th - 12th Grade

30 Qs

Graphs

Graphs

9th - 12th Grade

27 Qs

Struktur Data dalam Pembuatan Gim

Struktur Data dalam Pembuatan Gim

12th Grade - University

36 Qs

Data Structures - Stacks

Data Structures - Stacks

12th Grade

35 Qs

Quiz Pra ASAS Informatika Lanjut Asyikk uhuy Banget...

Quiz Pra ASAS Informatika Lanjut Asyikk uhuy Banget...

10th Grade - University

30 Qs

Quiz Konsep Berpikir Komputasional

Quiz Konsep Berpikir Komputasional

10th Grade - University

26 Qs

Data Structures

Data Structures

12th Grade

35 Qs

Data Structures Quiz

Data Structures Quiz

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Graham Bland

FREE Resource

31 questions

Show all answers

1.

OPEN ENDED QUESTION

1 min • 1 pt

A hospital has asked for a program that will control the order in which the arrivals are seen in the accident and emergency department. (a) A priority queue has been chosen to store the arrival information. (i) State the property of a priority queue that makes it suitable for this application.

Evaluate responses using AI:

OFF

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A hospital has asked for a program that will control the order in which the arrivals are seen in the accident and emergency department. (a) A priority queue has been chosen to store the arrival information. (i) State the property of a priority queue that makes it suitable for this application.

It allows for constant time retrieval of the highest priority element.

It maintains the order of arrival for all elements.

It provides a way to sort elements in ascending order.

It ensures that all elements are processed in a first-come, first-served manner.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

(ii) The priority queue is implemented using a circular queue. State an advantage of a circular queue which makes it more efficient in use of memory.

Efficient use of space by reusing empty slots

Faster insertion and deletion operations

Simpler implementation compared to linear queues

Better support for priority-based operations

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

(b) A test version of the priority circular queue consists of 5 cells. Arrival information consists of a severity rating and a last name. The severity scale is 3 (least severe), 2 (moderately severe), and 1 (most severe). For example, Mr Jones has a severity rating of 2. His arrival record would be ‘2 Jones’. What is the result after the following operations?

Option A: 1 Smith, 2 Jones, 3 Brown

Option B: 2 Jones, 1 Smith, 3 Brown

Option C: 3 Brown, 2 Jones, 1 Smith

Option D: 1 Smith, 3 Brown, 2 Jones

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

2. A stack is an important data structure in computer science. Which of the following best defines the term stack?

A stack is a collection of elements with a Last In, First Out (LIFO) access policy.

A stack is a collection of elements with a First In, First Out (FIFO) access policy.

A stack is a type of queue used for breadth-first search.

A stack is a data structure used to store key-value pairs.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A stack is a last in first out data structure where new items are added to the top of the stack and items are removed from the top of the stack.

True

False

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A call stack is used when subroutines are called. Which of the following items could each call stack frame hold?

Local variables

Return address

Function parameters

Global variables

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?