Question: What is the time complexity of a linear search algorithm?
Options:
Correct Answer: O(n)
Solution:
Linear search checks each element one by one, resulting in a time complexity of O(n).