Final answer:
Both the front and rear pointers change during an insertion into an empty queue implemented with a linked list.
Step-by-step explanation:
In a queue implemented with a linked list, when inserting into an EMPTY queue, both the front pointer and the rear pointer will change.
Initially, both the front and rear pointers will be pointing to NULL. When a new element is inserted, it becomes both the front and rear element of the queue. This means that both the front and rear pointers need to be updated to point to the new element.