Computer Science, asked by prathmesh9740, 1 year ago

The situation when in a linked list start=null is .
a. Underflow
b. Overflow
c. Houseful
d. Saturated

Answers

Answered by Bill5678
2
Underflow
This is a situation when :
You want to delete data from data structure that is empty

Answered by surajnegi0600
0

Answer:

When in a linked list, the start node is set to null, it is known as an "empty list" or "null list". It means that the linked list does not contain any elements, and therefore it is not holding any data.

Explanation:

In this situation, it is not an overflow or underflow, as these terms are used to describe situations where a data structure (such as a stack or queue) has too much or too little data, respectively. An empty linked list is a valid state, and it is not an error condition.

A linked list is a data structure that consists of a sequence of nodes, where each node contains a data element and a pointer that points to the next node in the list. A linked list is said to be empty when its first node (the head node) is null. An empty linked list is created when the first node is not assigned any value, and the pointer of the first node is not set to point to any other node.

In summary, when the start node of a linked list is set to null, it means that the linked list is empty and it does not contain any elements, it is not an error or overflow condition, but it is a normal state of a linked list.

More question and answers:

https://brainly.in/question/33875782

https://brainly.in/question/37651357

#SPJ3

Similar questions