Chapter 1 intro to computers and programming Flashcards

1
Q

5 main hardware components

A

CPU, Main memory(ram), secondary memory(hdd), input devices, output devices.

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

CPU(central processing unit) parts(1of2)

A

control unit which retrieves and decodes program instructions, coordinates activities of all other parts of computer.

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

cpu part 2of2

A

ALU: arithmetic and logic unit: Hardware optimized for high-speed numeric calculation
Hardware designed for true/false, yes/no decisions

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

main memory properties

A

volatile, erased when loses power or program terminates. called random access memory(RAM), made of bits(1 or 0) and bytes(group of 8 consecutive bits, byes haves addresses)

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

secondary storage properties and types

A

non-volatile,keeps its memory when shut off.

magnetic: floppy, hard drive
optical: cd, dvd
flash: usb drives

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

Types of software

A

system software and application software

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

system software

A

programs that manage the computer hardware and the programs that run on them. includes operating systems, utility programs and software development tools

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

application software

A

programs that provide service to the user such as word processors, games, specific problem solving programs

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

program

A

a set of instructions that the computer follows to perform a task

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

algorithm

A

a set of well-defined steps.

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

machine language

A

binary instructions that the machine can understand.

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

programming language types

A

low such as machine code(binary) and high level such as C++ that are closer to human readability.

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

steps from high level language to executable

A
  1. write source code
    2.Run preprocessor to convert source file directives to source code program statements.
    3.Run compiler to convert source program into machine instructions.
    4.Run linker to connect hardware-specific code to machine instructions, producing an executable file.
    steps 2-4 often occur with a single click.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

IDE?

A

An integrated development environment, or IDE, combine all the tools needed to write, compile, and debug a program into a single software application.

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

common elements in programming languages

A
Key Words
Programmer-Defined Identifiers
Operators
Punctuation
Syntax
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

keywords

A

aka reserved words, commands in a programming language that are reserved and cannot be used in variables names, etc.

17
Q

Programmer-defined identifiers

A

names made by programmer, not part of language(C++)

used to represent variables(memory locations), functions, etc.

18
Q

operaters

A

used to perform operations on data
includes arithmetic +,-,*,/
and assignment =

19
Q

punctuation

A

characters that mark the end of a statement such as , and ;

20
Q

syntax

A

The rules of grammar that must be followed when writing a program
Controls the use of key words, operators, programmer-defined symbols, and punctuation

21
Q

variable

A

A variable is a named storage location in the computer’s memory for holding a piece of data.

22
Q

variable definition(declaration?)

A

To create a variable in a program you must write a variable definition (also called a variable declaration)

23
Q

variable types

A

many different types each holding a specific amount of data

24
Q

general steps of a program

A

(planning),input, processing, output

25
Q

programming process

A
  1. define what a program should do
    2.visualize the program running on a computer
    3.use design tools like flowcharts, hierarchy charts and pseudocode to to create a model of the program
    4.check model for logical errors
    5.type code, save, compile
    6.check for errors found in compilation repeat 5 and 6 as necessary
    7.run program with test input
    8.correct any errors found in running algorithm
    repeat 5-8 as necessary
    9.validate results of program
26
Q

Procedural vs object oriented programming

A

Procedural programming: focus is on the process. Procedures/functions are written to process data.

Object-Oriented programming: focus is on objects, which contain data and the means to manipulate the data. Messages sent to objects to perform operations.

27
Q

Four steps to identify when defining what a program should do:

A

Purpose
Input
Processing
Output