CSCI 223 Quiz 1 (1.1 - 1.3) Flashcards
source program
created with an editor and saved in a text file (extension .c)
how many bits are in a byte
8
files that consist exclusively of ASCII characters are known as ?; all other files are known as
text files; binary files
? goes into the preprocessor and ? comes out
source program (text); modified source program (text)
? goes into the compiler and ? comes out
modified source program (text); assembly program (text)
? goes into the assembler and ? comes out
assembly program (text); object file (binary)
? goes into the linker and ? comes out
object file (binary); executable file (binary)
what programs perform the four phases of preprocessing, compiling, assembling, and linking?
preprocessor, assembler, compiler, linker
Why do we need to understand how compilation systems work?
to optimize program performance, understand link-time errors, and avoid security holes