Save
Computer Science
Fundamentals of computer organisation and architecture
The stored program concept
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
Jess singleton
Visit profile
Cards (14)
What is the definition of a computer that uses the stored program concept?
A computer that fetches and executes
machine code instructions
stored in
main memory
.
View source
What does "serially" mean in the context of the stored program concept?
Instructions
are fetched and executed in order, one after the other.
View source
What does "fetching" refer to in the stored program concept?
Retrieving an
instruction
from main memory.
View source
What does "executing" mean in the context of machine code instructions?
Carrying out what is specified by the
fetched
instruction.
View source
What are machine code instructions made of?
Just
1s and 0s
.
View source
Why can machine code instructions be executed directly by the processor?
Because they are in a format that the processor can understand without
translation
.
View source
What is main memory used for in a computer?
To store
instructions
and frequently used data.
View source
What are examples of main memory?
RAM
and
ROM
.
View source
What type of operations does arithmetic involve?
Mathematical operations such as
addition
,
subtraction
, and
multiplication
.
View source
What type of operations does logical involve?
Operations that use
logic gates
like
AND
,
OR
, and
NOT
.
View source
How does the stored program concept differ from early computers designed to execute just one specific program?
The stored program concept allows for
program instructions
to be switched out.
It enables modern computers to run numerous different
applications
.
View source
What are the two different architectures that computers using the stored program concept can be based on?
Harvard architecture
and
von Neumann architecture
.
View source
How does Harvard architecture differ from von Neumann architecture?
In Harvard architecture,
instructions
and data are stored in
different
pieces of memory.
View source
What is stored together in von Neumann architecture?
Instructions
and data.
View source