1.What was your learning from this experiment module?
Known about stack operations. how to do stack memory addressing.known about how data are stored and removed from stack memory.
This actually saves the data temporarily.
Data are stored into the stack with a PUSH instruction and removed with a POP instruction.
2.why we use stack segment?
In assembly language programming we have only four registers AX, BX, CX and DX . But when we need a lot of registers for storing variables these four registers are not enough. So we need to reuse these registers again and
again. This can be done by storing the present value of a register in the stack segment. then we can reuse our AX, BX, CX and DX.