Concept:
A linked list is a linear data structure where elements are not stored at contiguous memory locations.
• Node: The basic unit of a linked list. It consists of a Data field and a Link/Next field.
• Dynamic: Memory is allocated at runtime as needed.
Step 1: Evaluating Option (A).
Linked list elements are scattered in memory; they are linked via pointers. Arrays are the ones stored in contiguous memory. So, (A) is false.
Step 2: Evaluating Option (B) and (D).
• Accessing the $n^{th}$ element requires traversing from the head through $n-1$ nodes, which takes $O(n)$ time. Only arrays offer $O(1)$ random access. So, (B) is false.
• Linked lists are specifically designed to be dynamic. They can grow or shrink by simply allocating or freeing nodes. So, (D) is false.
Step 3: Confirming the structure.
By definition, a singly linked list node has two components: the information (data) and the address (pointer) of the successor node. This matches Statement (C) exactly.