CH1 vocabulary 1313 programming – Flashcards
Unlock all answers in this set
Unlock answersquestion
When a program runs on a computer, the part of the computer that carries out the instructions is called the
answer
CPU
question
When a program runs on a computer, it is stored in the
answer
Main Memory
question
when a program is not running it is stored on
answer
a disk
question
monitors, printers, status lights are all examples of
answer
output devices
question
Mice, trackpads, keyboards, scanners, joysticks are all examples of
answer
input devices
question
Flash drives, CDs, external disks are all examples of
answer
external storage
question
The ability of a language to let a programmer develop a program on computer system that can be run on other systems is called
answer
portability
question
A bit is a
answer
binary digit like 0 or 1
question
A byte in memory is identified by a unique number called its
answer
address
question
In modern computer systems, a byte consists of
answer
8 bits
question
RAM, random-access memory, is called that because
answer
you can pick any two random locations and it will take the same time to access the data
question
an operating system
answer
allocates resources like memory to programs that are running
question
application software
answer
is any software that is runs with the support of the operating system
question
a binary digit
answer
is 0 or 1
question
what defines a programming language
answer
it allows us to express an algorithm
question
which is not true
answer
an algorithm allows ambiguity
question
a compiler
answer
translates source code into executable code
question
The ability of a language to let a programmer develop a program on computer system that can be run on other systems is called
answer
portability
question
the code the programmer writes is called the
answer
source code
question
compilers translate the instructions written by the programmer into
answer
object code
question
the rules that govern the correct order and usage of the elements of a language are called the
answer
syntax
question
words that hold special meaning are
answer
key words
question
A location in memory used for storing data and given a name in a computer program is called a
answer
variable
question
before a variable is used it must be
answer
declared
question
An error in a program that involves a violation of language rules will be detected at
answer
compiler time
question
Division by zero when the program is executing is an example of a
answer
run time error
question
The purpose of testing a program with different combinations of data is to expose run-time and
answer
logical errors