CS:APP One Flashcards
What is a computer system?
A collection of hardware and software components that work together to run computer programs.
What is the source program a sequence of?
Bits with a value of 0 or 1
What are bits organised into?
8 bit chunks called bytes
What does each byte have?
An integer value that corresponds to a character
What are text files?
Files that consist exclusively of ACII characters?
What are files other than text files called?
Binary files
What is all information represented as?
A bunch of bits
What distinguishes different data objects?
The context in which we view them. For example, the same sequence of bits may represent an integer and a character.
What is a property of a high level program?
It can be understood by humans
What is required to run a high level program on a computer?
They must be translated by programs into a sequence of low level machine language instructions. THese instructions are then packaged in a form called an executable object program and stored as a binary disk file.
What is the translation from source file to object file performed by?
A compiler
What are the four phases of the compilation system?
Preprocessor, compiler, assembler, linker
What does the preprocessor do?
modifies the orginal C program according to directives that begin with the # character
What does the compiler do?
Translates into a file that contains an assembly language program. Each statement in an assembly language program exactly describes one low level machine language instruction in a standard text form
Why is assembly language useful?
It provides a common output language for different compilers for different high level languages
What does the assembler do?
translates the file into machine language instructions and packages them into relocatable object program. The file is a binary file whose bytes encode machine language instructions rather than characters.
What does the linker do?
Handles the merging between files needed residing in the standard library/other files.
What are 3 reasons programmers should know how compilers work?
We need to know how to optimise program performance. To understand link-time errors. Avoiding security bugs.
What are buses?
Buses carry bytes of information back and forth between components.
What are i/o devices?
I/o devices are the systems connections with the outer world.
What is the processor?
The CPU is the engine that interprets (executes) instructions stored in the main memeory.
What is at the core of a processors
A program counter (word sized storage device or register)
What is cache?
Cache is extra memory that is quicker to read from than main memory.
What is an operating system (simply)?
A layer of software interposed between the application program and the hardware. All attempts by an application program to manipulate the hardware must go through the operating system
What are the two primary purposes of the operating system
TO protect the hardware from misuse. to provide applications with simple and uniform mechanisms for manipulating complicated and different hardware devices.
With what 3 abstractions does an operating system perform its purposes?
processes, virtual memory and files
What illusions are added by the idea of a process?
The program is te only one running on the system. THe program appears to have exclusive use of the processor, main memory and io devices. One after the other.
What is a process?
It is the operating systems abstraction for running a program.
What is context switching?
It is how operations of one process are interleaved with each other (concurrency)