1. From this experiment module, have learned about stack operations, how data are stored and removed from stack memory. In stack operation, get ideas about instructions like PUSH, POP, CALL, RET. Also learned about Stack pointer and Stack Segment. Then using AX, BX.CX, DX register run the program and learned how the program run.
2. The STACK SEGMENT (SS) register is usually used to store information about the memory segment that stores the call stack of the currently executed program.SP points to the current stack top. By default, the stack grows downward in memory, so newer values are placed at lower memory addresses. To push a value to the stack, the instruction is used. To pop a value from the stack, the POP instruction is used.