Operators Flashcards
A binary Boolean operation that results in true only if both Boolean values are true, otherwise the result is false.
AND
+ for plus, - for minus, * for multiplication, / for division, and % for modulus.
Arithmetic Operator
A word that is used to describe the base 2 number system.
A type of operator that performs a calculation on two operates such as + or -.
Binary
The process of joining two strings of characters into a larger string of characters, an operation often indicated by the plus (+) sign.
Concatenation
An operator in programming logic that tests whether or not two objects or items of data contain the same value. In many currently used languages, the double equals sign (==) is the symbol for testing.
Equality Operator
A set of operands and operations that produce a mathematics based logic based result. Concatenation, or joining of strings, is also considered this.
Expression
A division process that results in a whole number answer, discarding or truncating any fractional remainder.
Integer Division
A division process that results in a whole number answer representing the remainder of the division process, discarding the actual answer. Indicated by the % sign.
Integer Modulus (Modulus)
Binary operators that compare the results of two expression. The result is either true or false.
Logical Operators
The operation in Boolean logic that indicates negation, or “opposite of” operator. Typically denoted by the ~ symbol.
NOT
The binary operation in Boolean logic that results in a true value if either or both operands are true.
OR
The order of precedence of all operators in a computational system, such as mathematics (PEMDAS) or logic (NAXO)
Order of Operations
Binary operators that compare two operands. The result is always true or false.
Relational Operators
Bit wise operators in programming which shift the binary bits of a value either to the let or to the right.
Shift Operators
Operators that combine the operation and assignment process into one operation such as +=, -=, *=, or /=.
Shortcut Operators