Question: In a singly linked list, how do you insert a new node at the beginning?
Options:
Correct Answer: Create a new node and point it to the head
Solution:
To insert a new node at the beginning, create a new node and set its next pointer to the current head.