asked 139k views
5 votes
The sequential search algorithm ________. a. returns 1 if the value being searched for is found or -1 b. if the value is not found must always be implemented as a method c. uses a loop to sequentially step through an array, starting with the first element d. requires the array to be ascending order

asked
User Streklin
by
7.4k points

1 Answer

0 votes

Answer:

C is correct

Step-by-step explanation:

Sequential search Loops through an array looking for a value starting from the first index (0) to the last index.

answered
User Yavanosta
by
7.7k points