Boolean Expressions Reading assignment

  1. Operators are command functions that can be applied to data. Assigning values, Booleans, arithmetic are examples of some of the operators’ capabilities.
  2. Addition, subtraction, multiplication, division, assigning variables, increments, decrement, Boolean and modulus.
  3. Logic operators determine Logic between variables and return boolean statements.
1 Like

1.- it’s an operation on single or multiples operands that produces a result
2.- >,<, =, !=, ==, >=, <=, ===, +, -
3.- AND (&&) and OR (||)

1 Like
  1. Operators are ? symbols? that can be used in a programming language to act on the values and/or objects and do the the actual coding.
  2. +, -, /, *, %, >,<, ==, ===, !=, ||, &&
  3. !, ||, &&
1 Like
  1. What are operators?
    An operator is a symbol that performs specific mathematical, relational or logical operation and produce final result.
  2. What binary operators do you know?
    Arithmetic, relational, logical, and assignment operators.
  3. What logical operators do you know?
    And, or, not, and ternary.
1 Like
1. What are operators?
    1. They perform the specified operation on one or more values to produce a result
2. What binary operators do you know?
    1. Addition (+); Subtraction (-)
3. What logical operators do you know?
    1. Equal to (==); greater than (>); less than (<)
  • What are operators?
    Operators are actions applied to one or more pieces of data.
  • What binary operators do you know?
    + , - , * , / , % , == , != , === , !== , < , > , <= , >= , && , ||
  • What logical operators do you know?
    && (and), || (or), ! (not)
1 Like
  1. They are values that are used to perform actions on other values.

  2. =, + /, >, <, !=, *, - (can be used an unary operator)

  3. &&, ||, !

1 Like
  1. An object that can manipulate a value
  2. Multiplication (*), addition(+), subtraction(-), Equal(==)
  3. and (&&), or (||), not (!)
1 Like
  1. Operators manipulate 2 values
      • / % ++ –
  2. && ||
1 Like
  1. operators perform on values to produce a new value
  2. binary operators + - * /
  3. logical operators && || !
1 Like

Hello Everyone,

  1. Operators are used to performing tasks such as math operations, logical operations

  2. < , > , == , !==, <=, >=

  3. && , || , !

Please correct me if I miss anything or am wrong. Thank you.

  1. What are operators?
    JavaScript includes operators as in other languages. An operator performs some operation on single or multiple operands (data value) and produces a result. For example 1 + 2, where + sign is an operator and 1 is left operand and 2 is right operand.
  2. What binary operators do you know?
    +, - , *, /
  3. What logical operators do you know?
|| , &&, ==, !=, >, <, conditional operator
1 Like
  1. What are operators?
  • Operators are what we insert between to values to create a specific action
  1. What binary operators do you know?
  • ; - ; * ; / ; == ; === ; != ; > ; < ; >= ; <=
  1. What logical operators do you know?
  • && ; || ; !
1 Like
  1. Operators are symbols that instruct the program what to do with the value withing the program to see if the result is true or false.
    2.<,>,<=,>=,!=,==
    3.if, and, or, and not
1 Like
  1. Operators are functions applied to variables to crate new values.
  2. arithmetic operator: addition, subtraction, multiplication, division, concatenate
    Logical operator: OR, AND
    Conditional operator: >, <, >=, <=, ==, !=
  3. Binary: OR, AND
    Unary: !
    Ternary Operator: true ? varibale-1, variable-2 / false? variable-1, variable-2
1 Like
  1. What are operators?
    They are functions, which apply on 1 or more values an operation.
    This operation combines or transforms the value(s) to 1 or more values.

2.What binary operators do you know?
+, -, *, /, % (modulo), ==, ===, !=, !==, <, >, <=, >=, &&, ||,

  1. What logical operators do you know?
    &&, ||
1 Like
  1. What are operators?
    An operator “operates” on a value with either arithmetic, binary or logic. Putting an operator between two values will apply it to those values and produce a new value.

  2. What binary operators do you know?

    (greater than) >
    (less than) <
    (greater or equal) >=
    (less or equal) <=
    (equal) ==
    (not equal) !=
    arithmetic operators + - * / %

  3. What logical operators do you know?

    && and
    II or
    ! not

1 Like
  1. What are operators?
    Symbols that connect values such as - and +. Thus, an operator will create/manipulate a new value out of existing values.

  2. What binary operators do you know?
    Basic operators : -,+,/,*, %,^,
    Comparative operators such as: =, !=, ==, ===, <,>,

  3. What logical operators do you know?
    ||,&&, and !. , Ternary ( ? : )

1 Like
  1. What are operators?
    Operators convert two or more values to produce a new value. For example, the addition operator is +, and the multiplication operator is *

  2. What binary operators do you know?
    The > and < signs are two binary operators representing “is greater than” and “is less than” respectively. Other binary operators are >= (greater than or equal to), <= (less than or equal to), == (equal to), and != (not equal to).

  3. What logical operators do you know?
    Javascript supports three logical operators: and, or, not.
    These can be used to "reason about Booleans.

1 Like
  1. a operator is an object that you can use to manipulate certain values.
  2. ,+ i put a comma because otherwise it wouldn’t show this is used for addition, * multiply, % modulus, - subtraction
  3. && its almost the same as =, ^ xor true only when both are opposite, ! not, || OR this is false only when both are false,
1 Like