A stack is implemented by an array A and the current size of stack is 10. Which of the following element will return from the top of the stack? (Capacity of stack
>10)
Note: Assume that the array index starts from 0.
O A[10]
A[9]
O A[O]
O A[1]
Answers
Answered by
4
Answer:
Insertion of element is called PUSH and deletion is called POP. enter image description here. Operations on Stack: push( x ) : insert element x ...
Similar questions