1/17
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
|---|
No study sessions yet.
Assignment Operator
allows a program to change the value represented by a variable
• Expression
a combination of operators and values that evaluates to a single value
• String
an ordered sequence of characters
• Variable
a named reference to a value that can be used repeatedly throughout a program
• Global variable
variable that can be used anywhere in your code
• Local variable
variable that can only be used in the part of the code where it was
created, like inside an onEvent (and is deleted once the onEvent is done running).
• Concatenation
a computer science process that combines two or more strings,
variables, or text fragments into a single string
• Boolean Value
a data type that is either true or false
• Comparison Operator
• Logical Operator
NOT, AND, and OR, which evaluate to a Boolean value
• Conditional Statement
affects the sequential flow of control by executing different
statements based on the value of a Boolean expression
• Function
a named group of programming instructions. Also referred to as a
"procedure"
• Function Call
a command that executes the code within a function