answersLogoWhite

0

Program code is stored in

User Avatar

Anonymous

14y ago
Updated: 8/18/2019

Memory.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Where the Program code is stored?

Memory, disk, tape... it depends.


Where is program written in microcontroller stored?

different pasts of code is stored in different meamory locations, like heap memeory, code memeory, ram etc


How c program gets stored in the memory?

Binary object code executable.


Unix command to list a basic program?

If the program is in source code and stored in a file, use the 'cat' command to list out its contents.


Where is the OS master program stored?

the master program of OS is stored in ROM.


What is the meaning of this term Stored Program Concept?

a program that is stored in the memory of the computer that executes it


Where are functions stored?

Functions in programming are typically stored in the source code files where they are defined. When the program is compiled or interpreted, these functions may be stored in memory for execution or within binary files as part of the executable. In some languages, functions can also be stored in libraries or modules, allowing for code reuse across different programs. Additionally, in web development, functions can be stored in external JavaScript files linked to HTML documents.


Who is credited with creating the stored program computer model?

The concept of stored program was presented by Dr.John Von Neumann.


When you compile source code where the variables stored?

When you compile source code, the variables are stored in memory during program execution. The compiler translates the source code into machine code, which allocates memory for variables in different segments, such as the stack (for local variables) and the heap (for dynamically allocated memory). The specific location and management of these variables depend on the programming language, the compiler, and the architecture of the system. Additionally, constants and global variables may be stored in separate memory regions.


Where does global static local register variables free memory and C Program instructions get stored?

* These are all implementation defined. Access to `register' specified indentifiers should be as fast as possible, so the compiler may place the value in a machine register. However, the compiler is free to treat a `register' declaration as an `auto' declaration. * Where free memory is maintained is an OS specific concept. Instructions are generally stored in code segement. Local Variables are stored in Stack. Register variables are stored in Register. Global & static variables are stored in data segment. The memory created dynamically are stored in Heap And the C program instructions get stored in code segment.


What is the genetic code code for?

instruction stored in the gene in the form genetic code.


Why would you use an interperter?

In computer science, an interpreter normally means a computer program that executes, i.e. performs, instructions written in a programming language. An interpreter may be a program that eitherexecutes the source code directlytranslates source code into some efficient intermediate representation (code) and immediately executes thisexplicitly executes stored precompiled code[1] made by a compiler which is part of the interpreter system