answersLogoWhite

0


Best Answer

RAM = Random Access Memory

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

stack

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Local Variables is stored in which part of the memory?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

In Java where do instance variables stored in memory?

An instance variable is part of an object. Therefore, it gets stored together with the object, on the heap. The heap is the part of memory which is used to store objects.An instance variable is part of an object. Therefore, it gets stored together with the object, on the heap. The heap is the part of memory which is used to store objects.An instance variable is part of an object. Therefore, it gets stored together with the object, on the heap. The heap is the part of memory which is used to store objects.An instance variable is part of an object. Therefore, it gets stored together with the object, on the heap. The heap is the part of memory which is used to store objects.


Is memory allocated at runtime for the static variables?

No. Static memory is allocated at compile time. Static variables are allocated within the program's data segment which is a physical part of the executable. When you load the executable into memory, the operating system sets aside enough memory for the entire executable and copies it, byte for byte, into that memory. So when the program is executed, the data segment is already allocated.


What is the benefit of float data type?

Floating type numbers can't be stored in integer type variables. If we do that then their fractional part will be lost. So, we use float data type to store numbers with fractional parts.


Where do objects and references stored in memory in java?

Objects are stored in an area of memory called the "heap", whilst reference variables are stored in the "stack". These are both parts of the computer's RAM memory; the Java Virtual Machine (JVM) simply reserves part of the memory available to it for the stack and for the heap, and manages them accordingly.


What is stack memory?

part of memory organized in stack

Related questions

In Java where do instance variables stored in memory?

An instance variable is part of an object. Therefore, it gets stored together with the object, on the heap. The heap is the part of memory which is used to store objects.An instance variable is part of an object. Therefore, it gets stored together with the object, on the heap. The heap is the part of memory which is used to store objects.An instance variable is part of an object. Therefore, it gets stored together with the object, on the heap. The heap is the part of memory which is used to store objects.An instance variable is part of an object. Therefore, it gets stored together with the object, on the heap. The heap is the part of memory which is used to store objects.


Where the static variables are stored?

initialize static variables are stored in data segment where uninitialized static variables are stored in BSS(block storing for Symbol) it also a part of data segment exp static int i=10;//stored in data segment static int i;//stored in BSS (uninitialized data segment) Thanks NAvin


Where is memory stored?

Memory is stored throughout the brain. However, the part of the brain responsible for actually coordinating the long-term storage of memory is the hippocampus (in the limbic system).


Where is the boot routine stored on microcomputers?

The boot routine is stored in the memory assembly on microcomputers. The Direct Memory Access chip was an important part of the original IBM PC and has become an essential component of modern computer systems.


What is a stack Is it a part of RAM?

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.


Is memory allocated at runtime for the static variables?

No. Static memory is allocated at compile time. Static variables are allocated within the program's data segment which is a physical part of the executable. When you load the executable into memory, the operating system sets aside enough memory for the entire executable and copies it, byte for byte, into that memory. So when the program is executed, the data segment is already allocated.


What is the concept of Reentrancy?

It is a useful, memory-saving technique for multiprogrammed timesharing systems. A Reentrant Procedure is one in which multiple users can share a single copy of a program during the same period. Reentrancy has 2 key aspects: The program code cannot modify itself, and the local data for each user process must be stored separately. Thus, the permanent part is the code, and the temporary part is the pointer back to the calling program and local variables used by that program. Each execution instance is called activation. It executes the code in the permanent part, but has its own copy of local variables/parameters. The temporary part associated with each activation is the activation record. Generally, the activation record is kept on the stack.Note: A reentrant procedure can be interrupted and called by an interrupting program, and still execute correctly on returning to the procedure.


How do people remember?

Well basically what we remember are memories so let us start by getting to know about memory.There are 3 different type of memory : sensory memory, short term memory and long term memory. By using the word remember usually something to do with long term memory because we usually recall things from this memory. Every type of information that we receive or touch our senses are encoding into sensory memory and this memory will transfer into short term memory (short term memory will decay rapidly) and by rehearsal short term memory are stored in many different part of our brain as long term memory(this memory will be stored in our brain for a long time more then short term memory). So by remember something it mean we recall those memory that were stored in our brain.


Is the nonvolatile memory where the diagnostic software the bootup instructions and a limited IOS are stored?

These form part of the BIOS software which is stored either on a non-volatile ROM chip on the motherboard, or in more modern computers, on a flash memory chip so that new information can be updated as required.


What are the experimental variables?

Expirimental Variables The part of your expiriment that does not change.


What are stimulus variables?

Stimulus variables are variables that are part of the habitat that an organism reacts to. These variables can be natural parts of the area such as weather.


What is symbol table and in which part of the memory it is stored?

A symbol table is a data structure used by compilers to store information about the variables, functions, and other entities in a program. It is typically stored in memory during compilation, often in a separate section known as the symbol table section. This section helps the compiler keep track of the symbols and their associated attributes to facilitate the compilation process.