viewing paste Unknown #27594 | Text

Posted on the
1 2 3 4 5 6 7 8
A stack data structure, when implemented by a programmer as done in the modules as a LIFO data structure, has the following property (only one correct choice):
 
[Assume there are several items remaining in the stack when considering these options.]
 
    A.  It allows the client to pop() the earliest, i.e., first,  push()ed item (the oldest item in the stack).
    B.  It allows the client to pop() the most recently push()ed item (the newest item in the stack).
    C.  It allows the client to pop() any item off the stack, based on the parameter the client passes to pop().
 
Viewed 824 times, submitted by Guest.