Consider the following stack of characters implemented as an array of 4 elements
STACK = ["A", "J", "P", "N"]
Describe the stack as the following operations take place:
a) STACK.pop()
b) STACK.append("K")
c) STACK.append("S")
d) STACK.pop()
Answers
Answered by
0
Answer:
c is the answer of the question
Similar questions