level: Search Algorithms
Questions and Answers List
level questions: Search Algorithms
Question | Answer |
---|---|
What are the two main types of searching algorithms? | Linear search and binary search |
What is the most basic kind of search in algorithms? | Linear search |
Which is the faster method for searching an item from an ordered list? | Binary search |
Which is more efficient among linear and binary search? | Binary search |
A _______ search can only work with an ordered list. | Binary |
A _______ search can bed used on an unordered list. | Linear |
A collection of data is called a _______ | Dataset |