1. What are number of elements present in stack if following operation are performed on a stack of size 5.  Push(1);  Pop();  Push(2);  Push(3);  pop();  Push(4);  Pop();  Pop();  Push(5);

Next Page »