Boolean Expressions Reading assignment

  1. basicaly symbols that can be used for logic gates. and math
  2. grater than > and less then <
  3. and && or || not !
1 Like

What are operators?

A character that represents an action.

What binary operators do you know?

It’s a dyadic operation of two elements to make a new element. These use operators like +,
-, *, /, to name a few.

What logical operators do you know?

OR – AND - NOT

1 Like
  1. operators are + - / * % and are put between values to change them .
  2. Binary operators are < less than > greater than == equal to != not equal to
  3. && and || or ! not .
1 Like
  1. What are operators?
    They are insructions that operate on values and returns a value.
  2. What binary operators do you know?
  • multily + Add - subtract / divide % modulos square.
  1. What logical operators do you know?
    && AND || OR ! negation
1 Like

1- Operators perform some operation on single or multiple operands (data value) and produce a result. There is various categories of operators in JavaScript such as: Arithmetic, comparison, logical, assignment, and conditional operators.

2-- - ==, >=, <=, Booleans +, -, *, /, and %

3- &&, || !

1 Like
  1. What are operators?

Operators are symbols used to perform certain actions with certain values to get certain results.

  1. What binary operators do you know?

==, +, -

  1. What logical operators do you know?

|| , &&, !

1 Like
  1. What are operators?
  • An action to be made on the values. (The Verb amongst nouns).
  1. What binary operators do you know?
  • Binary: +, -, *, /, %, !=, ==, !==, ===, <, >, <=, >=
  1. What logical operators do you know?
  • &&, ||, (! for ‘not’)
1 Like
  1. Operators can be unary, binary or trinary
    Different types of operators:
  • mathematical (+,-,*,/,% and ++,–)
  • comparison (>,<,>=,<=,!=,==,!==)
  • logical (||,&&;!)
  1. What binary operators do you know?
    Mathematica, comparison, Logica, relational,…

  2. What logical operators do you know?

  • logical (||,&&;!)
1 Like
  1. Operators will perform a function on values such as +, *, /, -
  2. Boolean, <>, True / False
  3. &&, ||, !
1 Like
  1. An operator is a programing object that acts on values. For example sum operator ‘+’
  2. Some binary operators are: + - / * && % || ==
  3. Some logical operators are: && || != ==
1 Like

What are operators?

Operators manipulate values. For example, addition.

What binary operators do you know?

    • = == != * / % ** && || < > <= >= === !== and bit shift operations

What logical operators do you know?

&& || ! < > <= >= === !==

1 Like
  1. Operators performs on single or multiple data values and produces a result.
  2. Some binary operators that I know are +, -, /, *, ^, ==, !=, !==, <, and >.
  3. Logical operators that I know are &&, | |, ? and !
1 Like
  1. Operators perform operations on single or multiple operands and produce results
  2. Multiplicative Operators, Additive Operators, Bitwise Shift Operators, Relational Operators, Equality Operators, Binary Bitwise Operators, and Binary Logical Operators
  3. Logical AND, OR, and NOT.
1 Like

Annotation 2020-04-15 160803

  1. (“let’s call it objects or manipulators”) that puts values or action of our content in to reaction .
  2. :face_with_monocle:… after digging in the web its little confusing . Book you suggested only suggests only Operators with two values are called Binary But in same time I found this .

    And here its a very useful link IMO :boom: https://www.tutorialspoint.com/javascript/javascript_operators.htm
    3.Logical operators && = And, | | = Or, ! = Not
1 Like
  1. All operator are symbols but some are written as words like (typeof)
  2. The * (multiple) +(add) - (subtract) /(divide) etc are binary operators.
  3. Three logical operator (not),&& (and), || (or)
1 Like
  1. Operators perform some kind of action with values. They acts as, more or less, as a verb inna sentence.

  2. Arithmetic, Comparison and logical operators.

  3. and -> &&; or -> ||; not -> !.

1 Like

Greatings. :wave: Nice analytic answer. :+1: But i have a small comment for the number 3 examples. At the three examples for & | ^ you have put the same operator &. Also i would set a link were somebody can look and understand how bitwise operators work because many will have learnt the operators by true false and not with bitwise 1,0 at this section of learning. https://www.w3schools.com/js/js_bitwise.asp

2 Likes
  1. Operators allow you to evaluate conditions
  2. +,-,<,>,==,!=
  3. &&, ||, !,
1 Like
  1. Operator is an action applied to some data

2.+, -, *, /, %, >, <, ==, >=, <=, !=

  1. &&, ||, !
1 Like
  1. Operators are signs used to compare, attribute or interact between values : it is the great family including arithmetic operators (+, * , /, -), logical and binary ones.

  2. Binary operators are booleans : meaning they can be only in one state between two. For example : < is boolean operator signifying “less than”, so x < y means “x less than y”. If this statement is true, then the value of this operation is true, same for false.

  3. Logical operators are binary operator from a human logic : AND, OR, NOT. Those are the equivalent to Union, Exclusion or Inverse in probabilities.

1 Like