A useful way to check this is to ask, for each operation, whether it only needs a node we already have a pointer to, or whether it needs a node we don't have a direct handle on:
Three of the four operations only ever touch nodes we already hold a reference to; only one requires locating a node we have no direct access to.
Therefore, the correct answer is Delete the last node of the list.