Pretest Flashcards

1
Q

Include Files

A

A separate file that contains declarations of functions, classes and variables

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

The preprocessor

A

Prepares the file to be translated by the compiler

include files are merged into the source file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

C++ Compiler

A

Translates code into object code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Linker

A

Links object code to produce an executable file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Function

A

The fundamental programming unit; a sequence of statements that performs a specific task

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Class

A

A general description of a group of entities that all have the same characteristics

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Object

A

An instance of a class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Member

A

Characteristic of an object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

‘using’

A

Includes a library of functions and identifiers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Macros

A

Similar to a function; runs on tokens

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Conditional Compilation

A

Preprocessor directives Tells the compiler to include or exclude selected lines

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Compound Statement

A

A group of statements that is enclosed by ‘{}’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly