Operators Flashcards

1
Q

A binary Boolean operation that results in true only if both Boolean values are true, otherwise the result is false.

A

AND

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

+ for plus, - for minus, * for multiplication, / for division, and % for modulus.

A

Arithmetic Operator

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

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 -.

A

Binary

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

The process of joining two strings of characters into a larger string of characters, an operation often indicated by the plus (+) sign.

A

Concatenation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

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.

A

Equality Operator

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

A set of operands and operations that produce a mathematics based logic based result. Concatenation, or joining of strings, is also considered this.

A

Expression

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

A division process that results in a whole number answer, discarding or truncating any fractional remainder.

A

Integer Division

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

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.

A

Integer Modulus (Modulus)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Binary operators that compare the results of two expression. The result is either true or false.

A

Logical Operators

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

The operation in Boolean logic that indicates negation, or “opposite of” operator. Typically denoted by the ~ symbol.

A

NOT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

The binary operation in Boolean logic that results in a true value if either or both operands are true.

A

OR

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

The order of precedence of all operators in a computational system, such as mathematics (PEMDAS) or logic (NAXO)

A

Order of Operations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Binary operators that compare two operands. The result is always true or false.

A

Relational Operators

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Bit wise operators in programming which shift the binary bits of a value either to the let or to the right.

A

Shift Operators

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Operators that combine the operation and assignment process into one operation such as +=, -=, *=, or /=.

A

Shortcut Operators

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

An operator in mathematics or in logic which works on only one operands, such as the negative, positive, or complement operators.

A

Unary Operator

17
Q

The binary Boolean operation that results in true if only one of the two operands is true, with the other being false.

A

XOR (Exclusively OR)