Given the way computers go about completing a linear search for an array of numbers, we can confirm that it would take about six steps to complete the search.
<h3>How do computers perform a linear search?</h3>
When given an array of numbers to search through the linear search method, the computer will follow a logical approach. It will begin at the leftmost number, in this case, the number 7, and then compare each number in the array to the number 52, one by one. When the number finally matches the parameter it is searching for, it will return the answer.
Since in this series of numbers, 52 is the fifth number, the computer will go through the 5 initial steps of comparing each number, and then complete the search with the sixth step which would be returning the index of 52.
Therefore, we can confirm that it would take about six steps for the computer to complete the search using a linear search.
To learn more about linear searches visit:
brainly.com/question/15178888?referrer=searchResults