CSE143
12/2/2002

MiniQuiz 12                                                                              
                                                                     

Name:

Section:

1. LIFO stands for _______   ________  _________  ________

2.  FIFO is the characteristic of a (choose one):  Queue   Stack

3. Draw the (informal) picture resulting from these (pseudo) statements.  Be sure to label the top.

        X = new Stack();

        X.push("Happy");

        X.push("Thanksgiving");

        Object ob = X.pop( );