Boolean Expressions Reading assignment

  1. What are operators?
    An operator is a symbol or word that that performs an action on a value.

  2. What binary operators do you know?
    +, -, *, ?, %, <, >.

  3. What logical operators do you know?
    And (&&), Or (||), Not (!).

1 Like
  1. Operators are represented by special characters or by keywords and provide an easy way to compare numerical values or character strings… For example, *, /, %, +, -.

  2. A binary operator is an operator that operates on two operands and manipulates them to return a result. Some common binary operators in computing include:

  • Equal (==)

  • Not equal (!=)

  • Less than (<)

  • Greater than (>)

  • Greater than or equal to (>=)

  • Less than or equal to (<=)

  • Logical AND (&&)

  • Logical OR (||)

  • Plus (+)

  • Minus (-)

  • Multiplication (*)

  • Divide (/)

  1. Logical Operators:

&& (Logical AND)
If both the operands are non-zero, then the condition becomes true.

|| (Logical OR)
If any of the two operands are non-zero, then the condition becomes true.

! (Logical NOT)
Reverses the logical state of its operand. If a condition is true, then the Logical NOT operator will make it false.

1 Like
  1. Operators allow you to combine and transform values.
  2. arithmetic, string concatenation. comparison
  3. and, or, not
1 Like

1: Operators are manipulators and coordinators of values.

2: <, ,>, +, - / etc…using 2 values.

3: && (and) ||(or), !..(not)

1 Like
  1. a process that will happen in values.
    • == = < > - * / %
  2. && || ! ?
1 Like
  1. What are operators?

An example : + or - or / or %

  1. What binary operators do you know?

Some binary operators include =, >, <, !=
3. What logical operators do you know?

(or) || is a logical operator also && is a logical operator.

1 Like
  1. What are operators?

they work with values we give them, its the operation that happens between two inputs

  1. What binary operators do you know?

β€œ+” β€œ-” β€œx” β€œ/” β€œ%” == != === !== < > <= >=
3. What logical operators do you know?

&& || !

1 Like
  1. What are operators? 1.
    Operators allow you to evaluate conditions

  2. What binary operators do you know?

  3. (+, -, *, /, and %)

  4. What logical operators do you know?

&& : and
|| : or
!  : not
<,>, ==, =>, =< : comparison operators
1 Like
  1. Operators are a way that values interact with one another. For booleans, determining true or false, the operators can be binary or logical.
  2. Binary operators are applied to numbers greater or less than one another, some examples are β€œ<” or β€œ>”, or β€œ=<”, β€œ==”, β€œ=>”.
  3. The three logical operators are β€œand”(&&), β€œor”(||), and β€œnot”(!).
1 Like
  1. What are operators? Operators are symbols that perform an action mathematical, logical & relational actions on two values to get a final result.
  2. What binary operators do you know? + * , -, , /, % , typeof
  3. What logical operators do you know? And (&&), Or (||), Not (!)
1 Like
  1. What are operators?
    Operators assign values, compare values, perform arithmetic operations. You can combine and transform values using operators.

  2. What binary operators do you know?
    These are boolean binary operators: < (less than), > (greater than), = (equal to), & (and), ll (or)
    These are arithmetic binary operators: + (add), - (Subtract), * (multiply), / (divide), % (modulo)

  3. What logical operators do you know?
    & (and), ll (or), ! (not), ? (conditional) are considered the logical operators.

1 Like
  1. What are operators? The assignment operator ( = ) assigns a value to a variable.Arithmetic operators are used to perform arithmetic on numbers: vw
  2. What binary operators do you know? Arithmetic operators are the simples binary operators. For example: (given that y = 5)
  3. What logical operators do you know?Logical operators determine the logic between variables or values into a boolian statement.
    For exmaple given that
1 Like

What are operators?
They are symbols which are used to assign values compare values, perform arithmetic operations, and more.

What binary operators do you know?

  • Binary Addition.
  • Binary Subtraction .
  • Binary Multiplication .
  • Binary Division.

What logical operators do you know?

(!)(&)(||)

1 Like
  1. The are symbols or expressiΓ³n that we can use over values to achieve an effect.

  2. minus operator, β€œ<”, β€œ>”, β€œ>=”, β€œ<=”, β€œ==”, β€œ!=”.

  3. and (&&), or (||) and not (!).

1 Like
  1. What are operators?
  2. What binary operators do you know?
  3. What logical operators do you know?
    Answers
    1). An operator is character which represents an action telling the compiler or interpreter to perform specific mathematical, relational or logical action(s) to produce final result.
    2). The following are examples of binary operators: Multiplication(*), Division (/), Modulus(%), lesser than(<), greater than(>), equal to(==), not equal to(!==), assignment(=), etc
    3). And(&&), Or(| |) and Not(!)
1 Like
  1. What are operators? - characters used to assign values, compare values, perform arithmetic operations, and precedence.

  2. What binary operators do you know?
    Addition +
    Subtraction -
    Multiplication *
    Division /

  3. What logical operators do you know?
    && - and
    || - or
    <,>, ==, =>, =< - comparison

1 Like
  1. with an operater you can manipulate a value
  2. values that use 2 operators are binary
  3. ==, >=, <=, !=
1 Like
  1. What are operators?
    Operators are a mapping or a function applied to values to give further values

  2. What binary operators do you know?
    '>, <, >=, <=, ==, !=, !

  3. What logical operators do you know?
    ||, &&, ?

1 Like
  1. Operators make something happen add, subtract equal to etc.
  2. *, /, +, -,
  3. , <, ==, || &&,

1 Like
  1. What are operators? Operators are symbols that β€œoperate” on values.

  2. What binary operators do you know? +,-,*,/.<,>,

  3. What logical operators do you know? and, or, not

1 Like