1/16
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Expression_a programming statement that can consist of a value, a variable, an operator, or a procedure call that returns a value
Boolean Value_a data type that is either true or false
Assignment Operator_allows a program to change the value represented by a variable
Variable_a named reference to a value that can be used repeatedly throughout a program
Comparison Operators_
Function_a named group of programming instructions, also referred to as a "procedure"
Function Call_a command that executes the code within a function
Arithmetic Operator_part of most programming languages and include addition, subtraction, multiplication, division, and modulus operators
Boolean Expression_evaluates to either true or false
Concatenation_joins together two or more strings end
to
Conditional Statement_affect the sequential flow of control by executing different statements based on the value of a Boolean expression
Evaluate_Expressions are evaluated to produce a single value
Logical operator_NOT, AND, and OR, which evaluate to a Boolean value
Procedure_a named group of programming instructions that may have parameters and return values. Procedures are referred to by different names, such as method or function, depending on the programming language
Relational operator_used to test the relationship between two variables, expressions, or values. A comparison using a relational operator evaluates to a Boolean value. For example: =, ≠, >, <, ≥, and ≤
Selection_determines which parts of an algorithm are executed based on a condition being true or false
String_an ordered sequence of charact