
Data structures and algorithms
Quiz by Muhammad Fajar Jati Permana 2209135
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
10 questions
Show answers
- Q1Which data structure stores elements in a sorted order?StackBinary Search TreeLinked ListHeap30s
- Q2Which searching algorithm examines the middle element of a sorted array and halves the search space?Breadth-First SearchLinear SearchDepth-First Search30s
- Q3Which of the following data structures uses First-In-First-Out (FIFO) approach?QueueLinked ListStackBinary Tree30s
- Q4Which data structure is based on a Last-In-First-Out (LIFO) approach?StackQueueBinary TreeLinked List30s
- Q5Which sorting algorithm has a worst-case time complexity of O(n^2)?Insertion SortSelection SortMerge SortQuick Sort30s
- Q6Which data structure allows efficient retrieval, insertion, and deletion of elements based on key-value pairs?Hash TableBinary Search TreeHeapLinked List30s
- Q7Which searching algorithm is based on the Divide and Conquer approach?Breadth-First SearchBinary SearchDepth-First SearchLinear Search30s
- Q8Which data structure represents a hierarchical structure with a set of connected nodes?Linked ListStackTreeQueue30s
- Q9Which sorting algorithm uses the Divide and Conquer approach?Bubble SortMerge SortInsertion SortSelection Sort30s
- Q10Which data structure allows efficient insertion, deletion, and retrieval of elements in a First-In-First-Out (FIFO) order?GraphQueueStackHeap30s