Ch.1 C++ Flashcards

1
Q

1.1 Why is the computer used by so many different people, in so many different professions?

A

Because the computer can be programmed to do so many different tasks

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

1.2 List the 5 major hardware components of a computer system

A

The Central Processing Unit (CPU), main memory, secondary memory, input devices, & output devices

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

1.3 Internally, the CPU consists of what two units?

A

Arithmetic and Logic Unit (ALU), and Control Unit

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

1.4 Describe the Fetch step on the fetch/decode/execute cycle

A
  1. Fetch: The CPU’s control unit fetches the program’s next instruction from the main memory
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

1.4 Describe the Decode step on the fetch/decode/execute cycle

A
  1. Decoder: The control unit decodes the instruction, which is encoded in the form of a number, and then an electrical signal is generated
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

1.4 Describe the Execute step on the fetch/decode/execute cycle

A
  1. Execute: The signal is routed to the appropriate component of the computer, which causes a device to perform an operation
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

1.5 What is memory address and what is it’s purpose?

A

A unique number assigned to each section of memory

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

1.6 Explain why computers have main memory

A

Program instructions and data are stored in main memory while the program is operating. Main memory is volatile, and loses its contents when power is removed from the computer. Like short term memory

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

1.6 Explain why computers have secondary memory

A

Secondary storage holds data for long periods of time - even when there is no power to the computer. Like long term memory

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

1.7 What are two general categories of software

A

Operating Systems and Application Software

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

1.8 What fundamental set/group of programs control the internal operations of the computer’s hardware?

A

The Operating System

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

1.9 What do you call a program that performs a specialized task, such as a virus scanner, a file-compression program, or a data-backup program?

A

A Utility program

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

1.10 Word processing programs, spreadsheet programs, email programs, Web browsers, and GAME programs belong to what category of software?

A

Application Software/Apps

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

1.11 What is an algorithm?

A

A set of well-defined steps for a performing a task or solving a problem

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

1.12 Why were computer programming languages invented?

A

To ease the task of programming; Programs may be written in a programming language and then converted into a machine language

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

1.13 What is the difference between a high-level language and a low-level language? Define how a high-level language acts

A

A high-level language is closer to the level of a human readability and resemble natural languages

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

1.13 What is the difference between a high-level language and a low-level language? Define how a low-level language acts

A

A low-level language is close to the level of the computer, and resembles the system’s numeric machine language

17
Q

1.14 What does portability mean?

A

That a program may be written on one type of a computer and run on another type

18
Q

1.15 Explain the operations carried out by the preprodecessor in the preprodecessor, compiler, and linker operations

A
  1. The preprodecessor reads the Source File searching for commands that begin with the # symbol. These are the commands that cause the preprodecessor to modify the Source File in some way
19
Q

1.15 Explain the operations carried out by the compiler in the preprodecessor, compiler, and linker operations

A
  1. The compiler translates each Source Code instruction into the appropriate Machine Language instruction, and creates an Object File
20
Q

1.15 Explain the operations carried out by the linker in the preprodecessor, compiler, and linker operations

A
  1. The linker combines the Object File with the necessary library routines
21
Q

1.16 Explain what is stored in a Source File

A

Contains program statements written by the programmer

22
Q

1.16 Explain what is stored in a Object File

A

Machine language instructions generated by the compiler translated from the Source File

23
Q

1.16 Explain what is stored in a Executable File

A

Code ready to run on the computer. Includes the machine language from an Object File, and the necessary code from library routine

24
Q

1.17 What is an integrated development environment?

A

A program environment that includes a Text Editor, Compiler, Debugger, and other utilities, integrated into one package

25
Q

1.18 Describe the difference between a key word and a programmer-define identifier

A

A key word has a special purpose, and a defined as part of a programming language. A programmer-defined identifier is a word or name defined by the programmer.

26
Q

1.19 Describe the difference between operators and punctuation symbols.

A

Operators perform on one or more operands. Punctuation symbol mark the beginning or end of a statement, or separate items in a list

27
Q

1.20 Describe the difference between a program line and a statement

A

A line is a single line as it appears in the body of a program. A statement is a complete instruction that causes the computer to perform an action.

28
Q

1.21 Why are variables called “variables”?

A

Because their content may be changed

29
Q

1.22 What happens to a variables current contents when a new value is stored there?

A

The original is overwritten

30
Q

1.23 What must take place in a program before a variable is used?

A

The variable must be defined

31
Q

1.24 What are the 3 primary activities of a program?

A

Input, processing, and output

32
Q

1.25 What 4 items should you identify when defining what a program is to do?

A
  1. The program’s purpose
  2. Information to be input
  3. The processing to take place
  4. The desired output
33
Q

1.26 What does it mean to “visualize a program running”? What is the value of such an activity?

A

To imagine what the computer screen looks like while the program is running. This helps define input and output

34
Q

1.27 What is a hierarchy chart?

A

A chart that depicts each logical step of the program in an hierarchical fashion

35
Q

1.28 Describe the process of desk-checking

A

The programmer steps though each statement in the program from beginning to end. The contents of variables are recorded, and screen output is sketched

36
Q

1.29 Describe what a compiler does with a program’s source code

A

It translates each source code statement into the appropriate machine learning statement,

37
Q

1.30 What is run-time error?

A

A logical error that occurs while the program is running

38
Q

1.31 Is a syntax error (such as misspelling a key word) found by the compiler or when the program is running?

A

By the compiler

39
Q

1.32 What is the purpose of testing a program with sample data or input?

A

To determine if a logical error is present in the program

40
Q

1.33 Briefly describe the difference between procedural and object-oriented programming

A

Procedural programs are made of procedures or functions. Object-oriented programs are centered on objects, which contain both data and procedures that operate on the