Top

Discussion

The type of linked list in which the node does not contain any pointer or reference to the previous node:

  • A.Circularly singly linked list
  • B.Singly linked list
  • C.Circular doubly linked list
  • D.Doubly linked list

Answer: B

A singly linked list is one in which each node has two fields, namely data field and pointer field. Data field stores the data and the pointer field points to the address of the next node.

No comment is present. Be the first to comment.
Loading…

Post your comment