McqMate
Sign In
Hamberger menu
McqMate
Sign in
Sign up
Home
Forum
Search
Ask a Question
Sign In
McqMate Copyright © 2025
→
Computer Science Engineering (CSE)
→
Data Structures (DS)
→
The term "push" and "pop" is related to ...
Q.
The term "push" and "pop" is related to the
A.
array
B.
lists
C.
stacks
D.
all of the above
Answer» C. stacks
1.6k
0
Do you find this helpful?
1
View all MCQs in
Data Structures (DS)
Discussion
No comments yet
Login to comment
Related MCQs
The term push and pop is related to
Suppose implementation supports an instruction REVERSE, which reverses the order of elements on the stack, in addition to the PUSH and POP instructions. Which one of the following statements is TRUE with respect to this modified stack?
In stack terminology, the __________operations are known as push and pop operations respectively.
What happens when the stack is full and there is no space for a new element, and an attempt is made to push a new element?
When the push operation is performed on stack the value of TOS will be ______
What is the result of the following operation? Top (Push (S, X))
Collection of related data items is called _______.
What is the term for inserting into a full queue known as?
Suppose a circular queue of capacity (n – 1) elements is implemented with an array of n elements. Assume that the insertion and deletion operation are carried out using REAR and FRONT as array index variables, respectively. Initially, REAR = FRONT = 0. The conditions to detect queue full and queue empty are
Consider a standard Circular Queue 'q' implementation (which has the same condition for Queue Full and Queue Empty) whose size is 11 and the elements of the queue are q[0], q[1], q[2].....,q[10]. The front and rear pointers are initialized to point at q[2] . In which position will the ninth element be added?