Question: What is the worst-case time complexity for searching an element in an unsorted array?
Options:
Correct Answer: O(n)
Solution:
In the worst case, you may need to check every element in the array, leading to O(n) time complexity.