
Brownbag Quiz
Quiz by Matt Elliott
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
- Q1What is the time complexity of inserting an element at the beginning of an array?O(n^2)O(log n)O(n)O(1)30s
- Q2What is the time complexity of finding an element in a sorted array using binary search?O(log n)O(n log n)O(n)O(1)30s
- Q3What is the time complexity of a linear search algorithm?O(n^2)O(log n)O(1)O(n)30s
- Q4What is the time complexity of the best-case scenario for bubble sort?O(n)O(log n)O(n log n)O(n^2)30s
- Q5What is the time complexity of the worst-case scenario for quicksort algorithm?O(n log n)O(log n)O(n^2)O(n)30s
- Q6What is the time complexity of merging two sorted arrays into a single sorted array?O(n)O(n^2)O(n log n)O(log n)30s
- Q7What is the time complexity of the worst-case scenario for selection sort?O(log n)O(n log n)O(n^2)O(n)30s
- Q8What is the time complexity of a typical hash table lookup?O(n)O(log n)O(n^2)O(1)30s
- Q9What is the time complexity of inserting a new element into a heap data structure?O(n log n)O(n)O(log n)O(1)30s
- Q10What is the time complexity of the best-case scenario for merge sort algorithm?O(n log n)O(n)O(n^2)O(log n)30s