Multiple choice

How many fields are there in a node of a circular doubly linked list?

  1. 3

  2. 1

  3. 2

  4. 4

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

A node in a doubly linked list typically contains three fields: the data field, a pointer to the previous node, and a pointer to the next node.