Computer Science, asked by greeshmasri2000, 5 days ago

What is the second part of a node in a linked list that contains the address of the
next node called?
data
o pointer
element
O link​

Answers

Answered by tanmaymishratm25
3

Answer:

The first and last node of a linked list usually are called the head and tail of the list, respectively. Thus, we can traverse the list starting at the head and ending at the tail. The tail node is a special node, where the next pointer is always pointing or linking to a null reference, indicating the end of the list.

Answered by adityashukla0069
8

Answer:

Explanation:

Pointer

Similar questions