Programming Vocab Flashcards
Literal (Data)
Data written directly into source code - cant be changed
Constant
Named piece of data that can’t be changed
Variable
Named piece of data that can be changed
Declare
To create a variable in code
Assign
To give a variable a value
Operator
Mathematical symbols that allows data to modified (e.g., +,-,*,/)
Source Code
The original code of a computer program that a programmer writes.
Human readable but not readable by microcontroller
Machine Code
The code the microcontroller can read (that gets uploaded to the arduino)
Compile
The process of turning source code into machine code
Statement
A line in a computer program (a line of source code)
If
Selection Keyword
Loop
A piece of code that repeats
Functions
A named set of computer statements that can be reused
Parameter
Data that is passed to function
Comment
Line in source code that explains the code