Multiple choice What is the time required to search an element in a linked list of length 'n'? O(log2 n) O(n) O(1) O(n2) Reveal answer Fill a bubble to check yourself B Correct answer Explanation In an unsorted linked list, you must traverse the list node by node to find a specific element. This linear search takes O(n) time in the worst case.