InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Search And Search All? |
|
Answer» SEARCH is a serial search, WHEREAS SEARCH ALL is a BINARY search. A table must be in SORTED ORDER before using SEARCH ALL. SEARCH is a serial search, whereas SEARCH ALL is a binary search. A table must be in sorted order before using SEARCH ALL. |
|