Question: What is the time complexity of searching for an element in an unsorted array?
Options:
Correct Answer: O(n)
Solution:
Searching for an element in an unsorted array requires checking each element, resulting in O(n) time complexity.