Multiple choice

In linear linked list, the first part contains the information of the element and second called ____ contains the address of the node in the list.

  1. the linked field or next pointer field

  2. the pervious pointer field

  3. the information of the element

  4. none of these

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The second part of a node in a singly linked list is the pointer field, which stores the address of the next node in the sequence.