93.6k views
3 votes
The efficiency of a sequential search can be improved by placing the records with the highest probability of retrieval at the ___. A search technique that uses this strategy is ____. A related strategy is "Move to the Front". Of these two, ____ is considered better because it responds more quickly to changes in retrieval patterns. If you do not know anything about the usage patterns of newly inserted items, then the best place to insert is at the ____ of the list.

SELECT FROM FOLLOWING CHOICES TO FILL IN THE BLANKS:
blank
middle
third
second
next to last
end
beginning
index sequential search
binary search
interpolation search
transposition
Move-To-The-Front
B-tree
AVL tree
sequential search

User DanSogaard
by
5.6k points

1 Answer

3 votes

Answer:

Beginning, transposition, move-to-thr-front, middle.

Step-by-step explanation:

Sequential search is a search algorithm that goes through the items in an array of list one at a time to get the searched item. The algorithm starts from the beginning of the list, comparing each items in the list with the searched term.

User Dave Fort
by
6.7k points