Boolean Expressions Reading assignment

1. What are operators?
Operators are used in logical statements to determine equality or difference between variables or values.

2. What binary operators do you know?
Some of the binary operators we are all familiar with is addition, division, subtraction and multiplication. The following are also binary operators <,>,<=,>=

3. What logical operators do you know?
The logical operators I am familiar with are &&, ||

1 Like
  • What are operators? they are functions to perfom values to produce results

  • What binary operators do you know? munis-, plus+,multiply*,divide/ <,>,= and balloon operators si , no .

  • What logical operators do you know? && (and), ll (or), !(not)

1 Like
  1. Operators are symbols that represent math or logic functions.
  2. Binary operators +, -, *, / , =, <, >, <=, >=, ==
  3. Logical operations AND, OR, NOT, NOR, NAND, XOR
1 Like
  1. Operators are what manipulates values
  2. Binary operators are for example: add / subtract / divide / multiply
  3. Logical operators might equate two value and return a true or false value.
1 Like

An operator performs some operation on single or multiple operands (data value) and produces a result. It can be Arithmetic, Comparison, Logical, Assignment, or Ternary Operator. i recommend visiting the link below.

+, -, *, / , =, <, >, <=, >=, ==, &&, ||

&&, ||, !

2 Likes

What are operators?

Operators are used in calculating numbers, logic for decision making, creating strings, and simple true-false statements.

What binary operators do you know?

+

-


/

%

++

What logical operators do you know?

Must be On/Off True/False Yes/No

== equal

! not

!= not equal

|| or

&& and

< less than

> more than

  1. An object in JS manipulates a value. For example, the most basic are arithmetic operators + - / *. Others are Comparison operators , Logical operators , Assignment operators , Conditional operators.
  2. A binary operator requires two operands, one before the operator and one after the operator : operand1 operator operand2. For example , 3+4 or x*y .
+   //Add
-   //Subtract
/   //Divided by
*   //Multiple
%   //Modulus
<   //Less than
>   //Greater than
&   //AND
|   //OR
^   //XOR
~   //Invert each bits
<<  //Move all bits onto the left
>>  //Move all bits onto the right
>>> //Move all bits onto the right and fill left end with 0
  1. Logical Operators : perform logical operations AND, OR and NOT
    && - AND true if both the operands/boolean values are true, else evaluates to false
    || - OR true if either of the operands/boolean values is true . evaluates to false if both are false
    ! Logical NOT : true if the operand is false and vice-versa. It flips the value
3 Likes

Sir,
A little confusion from your side. The logical operators are –
&&, ||, !

Regards

2 Likes

3.Hey Sir, logical operator in javascript are three , OR(||) , AND(&&) and NOT(!).

1 Like
  1. Logical operators in javascript are 3. They are AND(&&), OR(||) & NOT(!).
2 Likes
  1. What are operators?
    “Operators are used to assign values, compare values, and perform arithmetic operations.”

  2. What binary operators do you know?
    Operators that use two values are binary. Examples include <, >, !==, and ===.

  3. What logical operators do you know?
    Logical operators are applied to Boolean values themselves. Examples include and, or, & not.

2 Likes
  1. Functions that are capable to manipulate values
    1. +, - , * , /, >,<,==, =< and =>
  2. and, or and not
1 Like
  1. What are operators?
    Operators are used to perform arithmetic between values, assign value, compare values, state conditions and assign logic in JavaScript.

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

  3. What logical operators do you know?
    II = or
    && = and
    ! = not

1 Like

What are operators?
Perform an operation on 2 separate numbers that results in a 3 rd number

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

What logical operators do you know?

and ‘&&’, or ‘||’, not ‘!’

1 Like
  1. operators are actions that we can use one variables in order to manipulate or calculate variables.
  2. binary operators examples: +, *, /, , math. functions, etc.
  3. Logical operators examples: and, or, if, then, while, etc.
1 Like
  1. Operators are similar to verbs in the English Language. In JavaScript they are used to assign values, perform operations, etc. They are used as a ‘do this’ from the user inputting the code.

  2. Binary operators are those that use two values.

  3. && , | | , !
    These represent logical ‘and’ , ‘or’ , ‘not’

1 Like
  1. Operators are Javascript arithmetic symbols used to produce a result from comparing two different values.

  2. Binary Operators: && (and), == (equal to), || (or), > < (greater than, less than), <= (less than or equal to), >= (greater than or equal to), != (not equal to)

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

1 Like
  1. Operators are actions for values.

  2. Examples of binary operators are >(greater than), <(less than), ==(equal to), +(plus), -(minus), /(divide), *(multiply)

  3. The three logical operators are &&(and), ||(or), !(not)

1 Like
  1. Operators are tools with which we can combine and transform values.

2 Binary operators are:
i) comparison operetors
a) > is greater than
b) < is less than
c) >=greater than or equal to
d) <= less than or equal to
e) == equal to
f) != not equal to
Ii) arithmetic operetors
a) + addition
b) – subtraction
c) * multiplication
d) / division
e) % remainder
3) logical operators are:
a) && represents logical “and”
b) || represents logical “or”
c) ! denotes logical “not”

  1. Operators are symbols which is used to perform operations or manipulate values of the operands
  2. Most common binary operators are +, -, /, *. <, >, =, etc…
  3. &&, !, II, <, >, etc…
1 Like