User perform following below operations on stack of size 5 then, at the end of the last operation, total number of elements present in the stack are ______.
push(1);
pop();
push(2);
push(3);
pop();
push(4);
pop();
pop();
push(5);
Your answer:
1
2
3
4