The operation performed on the stack are:
push(12); push(15); pop(); push(14); push(17); x=pop(), y=pop(); push(5); push(16); push(12); z=pop(); s=pop(); pop();
What will be the result of (x+y)-(z+s)?
1
3
2
14
3
1
4
-1
The operation performed on the stack are:
push(12); push(15); pop(); push(14); push(17); x=pop(), y=pop(); push(5); push(16); push(12); z=pop(); s=pop(); pop();
What will be the result of (x+y)-(z+s)?