Question: What is the average time complexity of searching for an element in an unsorted array?
Options:
Correct Answer: O(n)
Solution:
In an unsorted array, you may need to check each element until you find the target, leading to an average time complexity of O(n).