It’s better to take the worst case possible
Assume we have 1<->2<->3<->4 in the list
new node to be added is say 5
so to maintain the linked list in the sorted order we have to go to the last node to insert this new node
which takes O(n) time if we n elements
so option c is correct