Programming Vocab Flashcards

1
Q

Literal (Data)

A

Data written directly into source code - cant be changed

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

Constant

A

Named piece of data that can’t be changed

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

Variable

A

Named piece of data that can be changed

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

Declare

A

To create a variable in code

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

Assign

A

To give a variable a value

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

Operator

A

Mathematical symbols that allows data to modified (e.g., +,-,*,/)

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

Source Code

A

The original code of a computer program that a programmer writes.
Human readable but not readable by microcontroller

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

Machine Code

A

The code the microcontroller can read (that gets uploaded to the arduino)

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

Compile

A

The process of turning source code into machine code

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

Statement

A

A line in a computer program (a line of source code)

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

If

A

Selection Keyword

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

Loop

A

A piece of code that repeats

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

Functions

A

A named set of computer statements that can be reused

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

Parameter

A

Data that is passed to function

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

Comment

A

Line in source code that explains the code

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