Question: In a singly linked list, how can you find the middle element in one pass?
Options:
Correct Answer: Use two pointers
Solution:
By using two pointers, where one moves twice as fast as the other, you can find the middle element in one pass.