For the segment of code below display the contents of the Ar
     For the segment of code below display the contents of the Array Stack object s after each method call. The first line of code creates and initializes the Array Stack object S. When displaying the contents of the Array Stack S after each method call draw, Array Stack S\'s array data as you see below.      
 
  
  Solution
S
s.push(9)
s.push(2) ;
s.pop();
s.push(7);
s.push(6);
s. push(12);
push(16)
pop();
pop();
push(4)
| 9 | 

