India Languages, asked by vedar3262, 11 months ago

Inserting an item into the stack when stack is notfull is called …………. Operation and deletion of itemform the stack, when stack is not empty is called………..operation.

Answers

Answered by yashikabhatia1234
1

Answer:

push and pop are the corrrect answers to the question...

Answered by sahusameer473
0

Answer:

Inserting an item into the stack when the stack is not full is called Push Operation and deletion of an item from the stack, when the stack is not empty is called pop operation.

Explanation:

Stacks are a type of container adaptors that follow LIFO(Last In First Out) property, where a new element is added at one end and an element(at the top) is removed from that end only.

push() function is used to insert or ‘push’ an element at the top of the stack. The element is added to the stack container and the size of the stack is increased by 1.

The pop() function is used to remove or ‘pop’ an element from the top of the stack. The size of the stack decreases by 1.

Click here to know more about "stack overflow":

https://brainly.in/question/20225642?referrer=searchResults

Click here to know more about "stack operations":

https://brainly.in/textbook-solutions/q-node-stack-contains-following-information-i-pin-2?source=quick-results#q-node-stack-contains-following-information-i-pin

Similar questions