Podcast
Questions and Answers
Which data structure is used to store a collection of elements in a non-contiguous manner?
Which data structure is used to store a collection of elements in a non-contiguous manner?
- Array
- Queue
- Linked list (correct)
- Stack
Which data structure is best suited for implementing a binary search algorithm?
Which data structure is best suited for implementing a binary search algorithm?
- Linked list
- Queue
- Stack
- Array (correct)
Which data structure is commonly used to implement a LIFO (Last-In-First-Out) behavior?
Which data structure is commonly used to implement a LIFO (Last-In-First-Out) behavior?
- Stack (correct)
- Array
- Queue
- Linked list