answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is a memory used to temporarily store program instructions.?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What memory is used to temporarily to store program instructions.?

ram


Memory is used to temporarily store program instructions.?

ram


What is used to temporarily store program instructions?

ram


A flash ROM memory chip is used to temporarily store instructions that control basic hardware functions?

flash memory read only or not


What window features allow you to temporarily store text?

The Windows feature that allows you to temporarily store text is the clipboard. A person can also temporarily store text in Notepad.


What is the term for very fast memory used to store data or instructions between the CPU and regular memory?

Very fast memory used to store data or instructions between the CPU and regular memory is called cache.


What Consists of electronic components that store instructions waiting to be executed by the processor data needed by those instructions and the results of processed data information?

Memory


What is psen pin in 8051?

Program Store Enable: The read strobe to external program memory.


What is the difference between program and data memory?

When the program is compiled and linked different parts of the program is organised in separate segments. That is our code will be in one segment code means the instructions to be executed this is called as code segment or program memory this is usually readonly. Then there are data which on which the code operates,these data get stored in a segment called data segment. Stack memory is a part of programs memory which will be used as stack in case of function calls to store the IP and parameters variables of the current function. The three types of memory specified above are owned by the corresponding process or program the linker will give info abt where to store which data to the loader, based on these infos loader will load the corresponding image i.e executable in the memory.


Memory chips used to store fixed start-up instructions?

uncategorized


A Computer program is a self-contained set of instructions used to operate a computer to produce a specific?

A program is a series of instructions that directs a computer how to perform the tasks necessary to process data into information. Programmers write a program and then store the program in a file that a user can execute (run). When a user runs a program, the computer loads the program from a storage medium into memory. Thus, a program is entered into a computer'smemory, as it is needed. Programs respond to commands that a user issues.


Why are RISC architectures referred to as Load-Store architectures?

RISC architectures generally have fewer instructions that operate directly on memory locations than CISC architectures. So, where a CISC machine will have instructions that operate directly on memory, in RISC this would be implemented as: Load from memory into register, do operation on register, store register back into memory. So a lot of the processing revolves around the Load-Store loop.