Quarter 1 Flashcards Concepts

1
Q

Low level language

A

A computer language that the computer understands.

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

High level language

A

Programming language that is easy for us to understand.

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

Interpreter

A

Translates the work line by line.

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

Debugger

A

Finds error in the program, mistake in the code.

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

Syntax Error

A

Grammar or spelling errors.

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

Runtime Error

A

Error that happens while the program is running.

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

Logical Error

A

It opperates differently but it doesn’t crash.

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

Source Code

A

Code written by the programmer.

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

Object Code

A

Code that the computer understands written in low level language

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

Variables

A

Memories space that holds a value that can change.

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

Constants

A

Memories space that holds values that can’t change.

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

Assigmnet Operator

A

Symbol that assings a value on the right to a variable on the left. (X=5)

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

Int (inteeger)

A

Data type that can hold whole numbers and may be positive, negative or zero.

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

Data type

A

Classification of data according to specific characteristics.

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

Double (float)

A

Data type that can hold values with decimal portion and may be positive or negative.

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

Char (character)

A

A single key stroke, may be a letter a digit or a symbol.

17
Q

Book (boolean)

A

Data type that can hold one of two possible values, true or false.

18
Q

String

A

Data type that is use to represent text and number that are not use in calculations. (Phone numbers)

19
Q

Input

A

The way that users communicate with the computer. (Keyboard, mouse)

20
Q

Output

A

The way the computer communicate with the user. (Monitor, speakers, printer)

21
Q

Algorithm

A

Steps to solve a problem in a finite amount of time.

22
Q

Flowchart

A

Graphic representation of an algortihm using special symbols.

23
Q

Pseduo Code

A

Instruction written in a natural language of the programmer.