What is the value of the ((Start → Next) → Next) → Info in the given list?

Concept:-
Single linked list:
This list consists of a number of nodes in which each node has a next pointer to the following element. The link of the last node in the list is NULL, which indicates the end of the list.
Calculation:-
After perform ((Start → Next) → Next) the current link transfer to the third node of linked. And Third node data value is 128.

Hence the correct answer is 128.



