Boolean Expressions Reading assignment

  1. What are operators?

Operators are symbols that allow you to “operate” with values.

  1. What binary operators do you know?

Binary operators are those that require two values; for example, + add, - substract, * multiply, / divide, ** raise to power, % modulus, == equal, > greater than, < less than, etc.

  1. What logical operators do you know?

&& and, || or, ! not

  1. What are operators?
    Operators are used to manipulate values; they a represented by a symbol that tells the compiler/interpreter what type of operation to perform.

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

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

1 Like

1 An operator executes an operation on values (data) and produces an outcome
2 binary operators in JS: booleans, ==, !=, >, < , +, -, *, /
3 logical operators in JS: II, &&, !

1 Like
  1. they are objects that are able to manipulate values
  2. addition, subtraction, division, multiplication
  3. &&, ||, !
1 Like

Operaters perform operations on single or multiple operands (data value) and produce a result.

Three binary operators:Left Shift (<<), Right Shift (>>), Unsigned Right Shift (>>>).

Three logical operators: || (OR), && (AND), ! (NOT).

1 Like
  1. operators perform an operation on values
  2. binary operators use two values to yield a valid result. unlike unary operators like (typeof) that only require one value to function.
    arithmetic operators, boolean operators, and logical operators(except for “not”) are binary.
  3. and, or, and not. these can be applied to boolean operators and arithmetic operators.
    “&&” returns true if both values are true
    “||” returns true if either value is true
    “!”’ returns the opposite of the value it is given. it is a unary operator. !true yields “false” and !false yields “true”
    "
1 Like
  1. What are operators?
    Operators are symbols that act on values, operators can be unary (operating on one value), binary (operating on two values) or ternary (operating on 3 values)

  2. What binary operators do you know?
    ==: Equal to
    !=: Not equal to
    “>”: More than
    “<”: Less than
    +, -, *,/, %, &&,||

  3. What logical operators do you know?

&& (and) : returns true if both boolean expressions provided return true, returns false if at least one expression returns false
|| (or) : returns true if at least one of the boolean expressions values return true, returns false otherwise
! (not) : a unary operator that flips the given boolean i.e. !true = false, !false = true

1 Like
  1. They are used to argue the boolean so that it makes sense, they set conditions
  2. true and false, yes and no, on and off
  3. “and”, “not” and “or”
2 Likes
  1. operators are functions that denote a specific operation on one or between more values.
  2. +,-,*,/,%
  3. &&, ||, !, ?
2 Likes
  1. What are operators?
    operators are things that can interact with values common ones are +,-,*, /

  2. What binary operators do you know?
    Boolean, <, >, >=, <=, ==, ===, !==, &&, ||, !

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

1 Like

Boolean Expressions Reading Assignment

  1. Operators perform upon values via arithmatic, comparison, incrementing, decrementing, assignment, etc. Operators acting upon one value is called unary, two values binary, three values ternery.
  2. + - * ? ++ --
  3. && || ! < > <= >= == === !== ? :
1 Like
  1. An operator is a symbol that has a function that you can apply to a set of values.

  2. We know a lot of binary operators some examples are : >, <, +, -, /, <=; etc.

  3. i know three logical operators :

&& = and

|| = or

! + not

1 Like
  1. Operators are used to assign and compare values or to perform arithmetic and logical operations.
  2. +,-,*,/,%
    3.||,&&
1 Like
  1. What are operators?
    JavaScript operators are used to assign values, compare values, perform arithmetic operations, and more.

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

  3. What logical operators do you know?
    and (&&), or (II) and not (!)

1 Like
  1. Operators apply an action to a statement and the value is computed.

  2. Binary operators: +, -, *, /, %.

  3. Logical Operators: And &&, Or ||, Not !.

1 Like
  1. Operators perform actions on values.
  2. ±*/<>
  3. &&, ||, !
1 Like

1 + - * /
2 == !=. <. >. >=. <=.
3 &&. ||. !

1 Like

1- In programming, operators are “built-in functions”. They are used to assign values to variables, compare them, add logic to expressions, or perform arithmetic

2- Example of binary operators: * +, -, *, /, % (remainder operator or modulo) - they are binary operators because they take in 2 values

3- Logical operators: * and, or, not - they can be applied to boolean values - && represents « and » - II represents « or » - ! Is « not »; it is a unary operator that changes the value of the data attached to it

1 Like
  1. What are operators?
    Operators are symbols or words that execute operations.

  2. What binary operators do you know?
    Binary operators are: +, -, *, /, %

  3. What logical operators do you know?
    Logical operators are: and &&, or || and not !=.

1 Like
  1. What are operators?
    A: they allow you to evaluate conditions and do calculations.
  2. What binary operators do you know?
    A: arithmetic (+, -, *, /, and %),
    string concatenation (+),
    comparison (==, !=, ===, !==, <, >, <=, >=),
    logic (&&, ||)
  3. What logical operators do you know?
    A: AND (&&),
    OR (||)
1 Like