In the name of ALLAH, the most beneficient, the most merciful

Data Structures (CS301)

Question (select most suitable option)

  Consider we have performed the following operations on stack of size 5.
Push(10);
Push(20);
Push(30);
Pop();
Pop();
Push(40);
10
20
40
20