answersLogoWhite

0

What is a stack Is it a part of RAM?

Updated: 10/24/2022
User Avatar

Wiki User

16y ago

Best Answer

The satck is a piece of memory that is allocated on the RAM, that a thread of a computer program uses for most of its variables.

User Avatar

Wiki User

16y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a stack Is it a part of RAM?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Local Variables is stored in which part of the memory?

RAM = Random Access Memory


Where is the CPU stack is placed?

its placed in RAm


Why do you have a check engine light on ever since you put your stack in your 2006 dodge ram 2500?

You have to check the engine light that is ever on after you put your stack in your 2006 Dodge RAM 2500to ascertain everything is working.


What is hardware stack and software stack?

A hardware stack refers to the physical components of a computer system, typically arranged in layers. It includes the processor, memory (RAM), storage (hard drive or SSD), and input/output devices (keyboard, mouse, monitor, etc.).


What is stack memory?

part of memory organized in stack


Which register bank shares space with the stack?

its the ram locations 00-1fh


Which register bank uses the same RAM space as the stack?

Bank 1


What is the use of .stack .data in starting lines of 8086 programming?

.STACK reserves bytes in RAM memory for the stack (the place where the processor will keep function calls and parameters)..DATABelow the ".DATA" line you should declare (and optionally define) your variables, so the compiler reserves the corresponding RAM for each of them.Data works differently from stack, as the data segment will keep named values (the variables values) while the stack will not. The stack will grow as needed upto the maximum value defined in the .STACK directive.


Is ram part of the CPU?

RAM can be part of the CPU.


What is stack space?

A type of RAM that is organized as a stack. or part of RAM that has software to make it operate like a stack. A stack memory operates like one of those chip dispensers they use in Los Vegas. You push the chips onto the stack. When you remove one (called a pop), it was the one on the top, the last one you put in. The first one you put in is the last one you take out. They are used by certain types of computer hardware and software that needs data accessed in that way, FILO (first in last out) and LIFO (last in first out). For example subroutine return addresses. When the CPU executes a subroutine call, the return address is pushed on the stack. The subroutine may call another subroutine, with another return address pushed on the stack. And more. then when the subroutines are exited, the addresses are POPed off the stack and executed. The use of a stack ensures the returns are all executed in the correct order.


What part of speech is stack?

noun or verb


What is stack in 8085 microprocessor?

STACK operation in 8085 microprocessor.The stack is a reserved area of the memory in RAM where temporary information may be stored. An 8-bit stack pointer is used to hold the address of the most recent stack entry. This location which has the most recent entry is called as the top of the stack.When the information is written on the stack, the operation is called PUSH. When the information is read from the stack, the operation is called POP. The stack works on the principle of Last in First Out or Fist in Lat Out