Chapter 1 Flashcards
In basic terms, software contains the instructions that….
Tell a computer what to do
What is a computer?
A computer is an electronic device that stores and processes data
In general what is hardware comprised of
The visible, physical elements of a computer
In general what does software do?
It provides invisible instructions that control the hardware and make it preform specific tasks
The term programming means….
To create (or develop) software, which is also called a program
What are the six major hardware components a computer consists of?
- CPU
- Memory
- Storage devices
- Input devices
- Out put devices
- Communication devices
Give 2 examples of an input device
Mouse
Keyboard
Give 2 examples of output devices
Monitor
Printer
Give 2 examples of communication devices
Modem
Network interface cards (NIC)
What is the subsystem that interconnects all of the computers components called?
The bus
Where can you find the bus in personal computers?
In the motherboard
What is a motherboard?
A circuit case that connects the parts of a computer together
what does CPU stand for?
central processing unit
what is the CPU?
the computers brain
what is the function of the CPU?
it retrieves instructions from memory and executes them
what are the two components of the CPU?
- a control unit
2. an arithmetic/logic unit
what is the function of the control unit in the CPU?
it controls and coordinates the actions of the other components
what is the function of the arithmetic/logic unit in the CPU?
it preforms numeric operations (addition, subtraction, multiplication, division) and logical operations (comparisons)
what are transistors?
tiny electric switches
what are CPUs built on?
small silicon semiconductor chips that contain millions of transistors for processing information
what does the internal clock of a computer do?
it emits pulses at a constant rate
what do the constant pulses of a computer internal clock do?
they synchronize the pace of operations
what is the function of a higher speed internal clock in a computer?
the higher speed enables more instructions to be executed in a given period of time
what is the unit of measurement for the speed of a computers internal clock?
Hertz (Hz)
what is one Hertz equal to?
1 pulse per second
what is the prefix on hertz nowadays for computers?
giga (10^9)
what is a multicore CPU?
a single component with two or more independent cores?
How is data stored in a computer?
by setting a sequence of switches on or off. When the switch is off the value is zero and when the switch is on the value is 1. These 0’s and 1’s are interperted as digits in the binary number system
what are the 0 and 1 digits of the computers binary number system called?
bits (binary digits)
how many bits are there in a byte?
8
what is a byte?
the minimum storage unit in a computer (8 bits)
what is an encoding scheme?
a set of rules that governs how a computer that governs how a computer translates characters, numbers, and symbols into data the computer can actually work with
what do most encoding schemes do to translate characters?
they translate characters into predetermined strings of bits
what is a good way to think of a computers memory?
a work area for executing a program
what does a computers memory consist of?
an ordered sequence of bytes for storing programs and data that the program is working with
what must happen with the a program and data before they can be executed by the CPU?
the data and program must be moved into the computers memory
what unique thing does every byte have?
a unique address
what is the unique address of a byte used for?
it is used to locate the byte for storing and retrieving data
what does RAM stand for?
Random Access Memory
Generally speaking the more RAM a computer has, the _____ it can run. But there is a _____ to this rule of thumb
faster
limit
Can you have an empty memory byte?
no, memory bytes are never empty, but they may have information that is useless to your program
is data stored in the computer memory saved permanently?
no. as soon as the power is turned off all memory stored in RAM is lost
why is RAM considered volatile data storage?
all memory is lost when the systems power is turned off
How is data stored permanently?
on storage devices
How is information in permanent storage used or accessed?
the data is moved to memory
why is data not accessed directly from permanent storage?
memory operates at a must faster speed than permanent storage devices can
what are the three main types of storage devices?
- magnetic disc drives
- Optical disc drives (CD and DVD)
- USB flash drives
what is a drive?
a device used to operate a storage medium
how does a storage medium function?
it physically stores data and program instructions
what is the function of a hard disc dive?
storing data and programs permannently
what does CD stand for?
compact disc
what are the two types of CDs?
- CD-R
2. CD_RW
what is the difference between a CD-R and a CD-RW?
CD-R is for read only permanent storage; the user cannot modify its contents once they are recorded
CD-RW can be used like an hard disk; you can write data ontp the disk and then overwrite that data with new data
what is the difference between a CD and a DVD?
a DVD can hold more data
what does USB stand for?
Universal Serial Bus
What is a USB flash drive?
a device for string and transporting data
what is a computers native language?
machine language
what is machine language?
a set of built-in primitive instructions in the form of binary code
assembly language is a ____ ____ language
low level
how does assembly language work?
mnemonics are used to represent each of the machine-language instructions. the assembly source file is translated into machine language by the assembler
what does platform-independent mean?
different machines could run one high level language program
what are instructions in a high level language called?
statements
what is a program written in high level language called?
source code or source program
what must happen to a source code for the machine to execute the program?
translation via the interpreter or compiler
what language does the CPU understand?
Machine language/binary number system
what is an assembly language?
a language which uses mnemonics to respresent machine language instructions, which are then translated into machine language by the assembler
what is an assembler?
a program which translate assembly language into machine language
what is a high-level programing language?
an English-like platform-independent language which is translated by a interpreter/compiler
what is a source program/code?
a program written in high-level language
what is an interpreter?
a translator of high-level language which reads one statement from the source code, translates into machine code, executes it immediately and moves onto the next statement
what is a compiler?
a translator of high level language that translates the entire source code into a machine code file, and then executes that file
what are the three major task of an operating system?
- controlling and monitoring system activities
- allocating and assigning system resources
- scheduling operations
the operating system (OS) is the _____ important ___ that runs on a computer
most
program
what does an OS do?
manages and controls a computers activities
_____ allows a single prgram to execute multiple tasks at the same time
multithreading
_____ allows multiple programs to run simultaneously by sharing the CPU
multiprogramming
______ (also called ____ ____) uses two or more processors together to preform sub tasks concurrently and then combine the solutions of the subtasks to obtain the solution for the entire task
multiprocessing
parallel processing
what is #include ?
a compiler preprocessor directive
what does #include do?
tells the compiler to include the iostream library in this program
why is a library like iostream called a header file in C++?
because it is usually included at the head of the program
what is the function of using namespace std; ?
it tells the compiler to to used the standard namespace
what is std the abbreviation of?
standard
namespace is a mechanism to avoid ____ ____ in a large program
naming conflicts
what is a function?
a construct that contains statements
Every C++ program is ___ from a _____ function
main
main functions must be enclosed in a _____
block { }
what are the symbols { and } called?
left and right braces
every statement in C++ must end with a ________
semicolon ( ; )
what is the semicolon placed at the end of every statement called?
a statement terminator
what does cout stand for?
console output
what is
stream insertion operator
what is the function of
sends a string (outputs) to the console
a string must be enclosed in _____ _____.
quotation marks
What does endl stand for?
end line
what does sending endl to the console do?
ends a line and flushes the output buffer to ensure that the output is displayed immediately
where is return 0; placed and what is its function?
it is placed at the end of every main function and tells the computer to exit the program
what does the value 0 in return0; indicate?
it indicates that the program has terminated with a successful exit
what does // mean?
that this line is a comment and is not part of the program
what is a line comment?
a single line comment preceeded by double slashes //
what does /* (imaginary text) */ mean?
that in between these two /*s is a block or paragraph comment
what is a block comment?
a comment between two slashes like such /* */. the compiler ignores all comments between the two slashes
C++ programs are ___ sensitive
case
_____ (or ____ ___) are words which have specific meaning to the compiler and cannot be used in the program for other purposes
keywords
reserved words
preproccessor directives (such as #include) _____ (are/are not) statement so _____(do/do not) put semicolons at the end of processor directives
are not
do not
is it okay to put spaces between ?
no
what is # used to denote?
a processor directive
what do do?
encloses a library name when used with #iostream
when are ( ) used?
with functions (such as main( ) )
what are called?
angle brackets
what does ; do?
marks the end of a statement
What are the 4 rules and identifier must obey?
- Can only be composed of letters, digits, and underscores
- Must start with a letter or underscore
- Cannot be a reserved word
- Can be any length but is usually capped at 30
C++ is _____ sensitive
Case
what are the three separate programs a c++ compiler contains?
preprocessor
compiler
linker
C++ compiler preform three tasks: linking, preprocessing, and linking. What sequence does it do these tasks in?
- preprocessing
- compiling
- linking
a preprocessor is a program that…..?
processes a source file before it is passed down to the compiler
the preprocesser processes _______.
directives
the compiler translates the intermediate file (from the ______) into a _____ _____ file
preprosesor
machine code
what is a machine code file also known as?
an object file
the linker links the machine code file with the _____ ____ ___ to form an _____ ____
supporting library files
executable file
what does IDE stand for?
integrated development environment
what does a syntax error result from?
errors in the codes construction (such as misspelled words or forgotten punctuation)
_____ errors cause a program to terminate abnormally
runtime
errors detected by the compiler are called ____ errors or _____ errrors
syntax
compile
when do input errors occur?
when the program is waiting for a value but the user has actually already entered a value but the computer cannot handle it
logic errors occur when……?
a program does not preform the way it was intended