2- first program, development environment Flashcards

1
Q

Source program

A

program written in human-readable form
extension - .cpp (helloworld.cpp)

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

Compiler

A

applied to the source program to translate it into form machine understands
compiler may produce either object code - direct translation of the source program - extension o. (helloworld.o)

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

Linker

A

adds all other necessary parts for the program to run on a computer and produces executable code

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

Console application (command line application, Win32)

A

input/output go to console

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

Project

A

a set of files that are developed jointly. A project compiles into a single executable

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

Solution

A

A set of related projects

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

Subversion

A

version control software used by programmers for team code development
has centralized code repository

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

Program tracing

A

suspending program execution at specific source line and executing program one source line at a time

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

Variable watching

A

observing values stored in source program variables

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

Breakpoint

A

line in the source program where execution has to be suspended

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