Multiple choice technology architecture

The situation when in a linked list START=NULL is

  1. underflow

  2. overflow

  3. housefull

  4. saturated

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

When START=NULL in a linked list, the list is empty. Attempting to delete from an empty data structure is called underflow. Overflow refers to being unable to insert due to lack of space, which is the opposite scenario.