Unit 4 Flashcards
(10 cards)
What is an Assignment Operator?
Allows a program to change the value represented by a variable.
What is an Expression?
A combination of operators and values that evaluates to a single value.
What is a String?
An ordered sequence of characters.
What is a Variable?
A named reference to a value that can be used repeatedly throughout a program.
What is a Boolean Value?
A data type that is either true or false.
What are Comparison Operators?
<, >, <=, >=, ==, != indicate a Boolean expression.
What are Logical Operators?
NOT, AND, and OR, which evaluate to a Boolean value.
What is a Conditional Statement?
Affects the sequential flow of control by executing different statements based on the value of a Boolean expression.
What is a Function?
A named group of programming instructions. Also referred to as a ‘procedure’.
What is a Function Call?
A command that executes the code within a function.