Suppose you are examining a set of raw medical data that includes the side effects of a specific drug. You are interested in finding out which side effects occur the most often. What would be an appropriate algorithm to find this data?(1 point)%0D%0AResponses%0D%0A%0D%0Afor loop%0D%0Afor loop%0D%0A%0D%0Abinary search%0D%0Abinary search%0D%0A%0D%0Abubble sort%0D%0Abubble sort%0D%0A%0D%0Alinear search
1 answer
A linear search algorithm would be an appropriate choice to find the side effects that occur most often in the raw medical data. This algorithm involves scanning each data element in order and comparing it to the desired value. By iterating through the set of data and keeping a count of each side effect occurrence, the algorithm can determine which side effects occur the most frequently.