Question: Assume that a Stack is implemented in a class named StackArray with an integer array that has 1 0 elements. What will be the array

Assume that a Stack is implemented in a class named "StackArray" with an integer array that has 10 elements. What will be the array elements after the given code is executed? (Note that elements should be displayed starting from the top.)
StackArray stack905= new StackArray(10);
for (int i=1;i6; i++){
stack905.push(i %2*4);
}
for (int i=0;i6; i++){
if (i%3==0)
stack905.push(i%2*4);
else if (i%3==1)
System.out.println(stack905.pop());
else
stack 905.push(i*4%2);
}
Your answer:
{4,0,4,0,4,0,0,0,0,0}
{0,0,0,0,0,0,4,0,4,0}
{0,0,0,0,0,0,0,4,0,4}
 Assume that a Stack is implemented in a class named "StackArray"

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!