Boolean Expressions Reading assignment

  1. What are operators?
    Operators are expressions that give a certain operation to certain values.

  2. What binary operators do you know?
    0 and 1

What logical operators do you know?
&& β†’ and
II β†’ or

1 Like
  1. Operators are symbols which when put between two values apply to them and produce a new value.
  2. β€œ>” β€œ<” β€œ>=” β€œ<=” β€œ==” β€œ!=” β€œ+” β€œ-” β€œ*” β€œ/”
  3. && - and
    || - or
    ! - not
1 Like

1.What are Operators? -Operators are used to assign values, compare values, perform arithmetic operations, and more.

  1. What Binary Operators do you know?
    -Greater then symbol (>)
    -Lesser than symbol (<)
    -Greater than or equal to symbol ( => )
  • Less than or equal to symbol ( <= )
  • Equal to symbol (==)
  • Not equal to symbol (!=)
  1. What Logical Operators do you know?
  • And (&&)
  • Or ( | | )
  • Not (!)
1 Like
  1. What are operators?
    Operators are used in many parts of the javascript language. Typically in forms of symbols like =,+,-, or /,!=,==,>< in which are used to solve and or perform a task in the code.

  2. What binary operators do you know?
    & and,| or, ~ not, ^ xor, << zero fill left shift, >> signed right shift, >>> zero fill right shift.

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

1 Like
  1. operators are symbols that instructs the program to carry out a certain calculation/computation/comparison
  2. +, -, *, /
  3. ==, !=, <=, >=, &&
1 Like
  1. Operators are actions applied to the values to produce a new value.
  2. +, -, *, /, %, >, <, >=, <=, !=, ==, ===
  3. &&, ||, !, ?,
1 Like
  • What are operators?

Operators do something to the expression that ultimately creates a value.

  • What binary operators do you know?
    True and false. Some examples would be greater than and less than.

  • What logical operators do you know?

β€œAnd,” β€œor” and β€œnot.”

1 Like
  1. An operator is what manipulates a value. Its the grammar equivalent to a verb.
  2. Arithmetic and Boolean(mostly) are binary when they operate on 2 values. + - * / % etc.
  3. || && are logical operators.
1 Like
  1. Operators are tools, putting which between two values we are producing third as a result of arithmetic action on them. Operators are: +, -, /, *
  2. Binary operators are operators that have only 2 values and can take only one state as a result : and, or, not, and comparison operators.
  3. and, or, and not
1 Like
  1. Operators take two number values and produce a number
  2. Equal (==), not equal (!=), greater (>), greater or equal (=>), lesser (<), lesser or equal (<=),
  3. And (&&), or (||), not (!)
1 Like

I guess operator can be used not only for number value but for any type of values used in JS?

1 Like
  1. Operators, are symbols that tell the program what to do with the values.
  2. <, >, ==,=<, =>
  3. &&, ||, !
1 Like
  1. Operators allow you to evaluate conditions
  2. <, >, <=, >=, ==, !=
  3. &&, ||, !
1 Like

Correct, you could use them with string variables, arrays and other types of variables that need some operator between them or many.

If you have any more questions, please let us know so we can help you! :slight_smile:

Carlos Z.

Lesson 11: Reading Assignment + Quiz: Boolean expressions

Questions:

  1. What are operators?
    Operators perform arithmetic actions on values in a function. Operators are used to assign values, compare values, perform arithmetic operations, and more.

  2. What binary operators do you know?

  • , - , * , / , % , == , != , < , > , <= , >= , true , false ,
  1. What logical operators do you know?

&& , || , ! ,

1 Like
  1. What are operators?
    They are functions/methods that manipulate.

  2. What binary operators do you know?
    Adding, Subtracting, multiplication, and division.

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

1 Like

What are operators?
Operators affect variables and strings.

What binary operators do you know?
Binary operators use two values. Examples are:
β€˜>’ greater than,
< less than,
β€œ>”= greater than or equal to,
<= less than or equal to
== equal to
!= not equal to

What logical operators do you know?
These can be used to β€œreason” about Booleans.
&& logical and
|| logical or
! logical not

1 Like
  1. What are operators?

Operators are commands which tell the programm to do a certain task for example an calculation/comparison and so on.

  1. What binary operators do you know?
    less than <
    greater than >
    equals to ==
    greater than or equal to >=
    less than or equal to <=
    not equal to !=

  2. What logical operators do you know?

    && : and
    || : or
    ! : not

1 Like
  1. Operators are expressions that give a certain operation to certain values for example
    == , <, >.
  • == means equal to,
  • > Means greater than,
  • < less than.
  • && means logical and,

  • || means logical or

  • ! means logical not

1 Like
  1. Operators operate on values.

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

  3. &&, ||

1 Like