1.What was your learning from this experiment module?
a.how stack memory addressing work .how it saves the data temporary .and what is the necessity of stack segment. Basically Its a LIFO memory means last in first out.
b.Push is used to store the data into the stack segment and for restoring it use pop.
2.why do we use stack segment?
we have only four registers(AX,BX,CX,DX) for operation . But when we need more registers we use stack to reuse our general-purpose registers again and again. Because with it we can temporarily save data then we can restore it .