Q1. Which advantage is normally associated with an array over a singly linked list?
Explanation
Arrays support efficient random access because the location of element i follows from the base address and element size. A singly linked list must traverse nodes sequentially to reach the same position.
