Computer Science, asked by seemagarg6650, 1 year ago

Identify the point that is not true with respect to stack

a.Not possible to insert or remove elements anywhere except the top of stack

b.Stack supports lifo(last in first out) for deleting elements

c.None of these

d.Stack is dynamic set where elements are removed in reverse order of insertion

Answers

Answered by sou86
5

Answer:

.Not possible to insert or remove elements anywhere except the top of stack

Answered by smartbrainz
9

The answer is c. None of these

Explanation:

In a stack addition and deletion of items will happen from only one end of the stack and that position called top. The item at top place0 is named top element.

A Stack consists of a collection of items which follows LIFO order, which means an element that is added lastly will be deleted first.

A stack is a dynamic set where the element removed from the set is the one most recently added.

Similar questions