Podcast
Questions and Answers
Which of the following is an example of a linear data structure?
Which of the following is an example of a linear data structure?
- Heap
- Graph
- Tree
- Array (correct)
What is a data structure?
What is a data structure?
- A software program used for analyzing data
- A way of storing and organizing data for efficient access and modification (correct)
- A programming language used for data manipulation
- A type of computer hardware
What is the time complexity of searching in a binary search tree?
What is the time complexity of searching in a binary search tree?
- O(log n) (correct)
- O(n)
- O(1)
- O(n log n)
Which data structure uses First In First Out (FIFO) ordering?
Which data structure uses First In First Out (FIFO) ordering?