Boolean Expressions Reading assignment

1. What are operators?

Found in JavaScript, operators are the tools used to combine and transform values. There are 3 basic types of operators

(a) UNARY OPERATORS: requires 1 input. Examples include - (’-’ for negation, ‘!’ for negation, ‘type of’)
(b) BINARY OPERATORS: requires 2 inputs. Examples include - (+, -, *, /, %, ==, !=, ===, !==, <, >, <=, >=, &&, ||)
© TERNARY OPERATORS: requires 3 inputs. Examples include - (?:slight_smile:

2. What binary operators do you know?

Listed above

3. What logical operators do you know?

Logical operators I’m currently familiar with include ‘&&’ and ‘||’

  1. Operators are symbols with specific functions and when placed between two values, will manipulate those values and turn it into another value.
  2. +, -, *, /, ==, !=, >=, <=, >, <, %,
  3. &&, ||, !
  1. operators are the objects which can connect and manipulate values with each other

  2. +, -, *, <…

  3. &&, ||

  1. Operators are character which represent an action between values. They can be used for assignment, arithmetic, or even comparison operations.
  2. Binary operators are operators that perform actions on only two (binary) values.
  3. Logical operators are a subclass of binary operators, and represent boolean comparisons, for instance, &&, ||, ==, !=, ===, !==
  1. Assign values, compare values, perform arithmetic operations and more
  2. ==, ===, !=, !==, >, <, >=, <=
  3. and, or, not
  1. Operators are tools allowing us to reason
  2. True or False
  3. And : && Or : | | Not : !

what are operators?
Operators are like verbs they manipulate a value, they are actually used to assint values, and also to perform arismetric operations, compare values, assign conditions and logic and so on.

Binary operations?

=

++
!=

logical operators

and=&&
or=//
not=!

  1. They assign assign values, perform arithmetric operations, compare values, assign conditions, logic, typeof or
    deletion ect. if an operator takes one value then it is a unary operator, while if the operator uses two values, its
    is termed a binary operator.
    2 .+, - , * , /, %, >,<,==, =<, =>,!=
  2. && - and, II - or , ! -Not
  1. Operators can provide comparison, arithmetic, logic, or concatenate types of values or expressions as it relates to JavaScript

  2. Binary Operators would be arithmetic such as (+, -, *, /, etc)
    assignment such as ( -=, +=, *=, /=) comparison such as (>, < , =, etc), logical, string and relational.

  3. Logical operators tell us and, or and not for reasoning. logical such as (||, &&, etc), and type such as (typeof)

  1. Operators are applied to values to produce a desired result.
    • Plus, - Minus, *Multi., / Div., are binary operators for arithmetic and <less than, >greater than, == Equal, != not equal are binary operators for camparison
  2. (&&=and), (||=or) are logic.
  1. operators applied to values produce a new value
  2. Binary operators I know include <,>,!,>=,<=,==,!=,&&,||
  3. Logical operators that denote logical and, or and not are: &&,||,!

1 using by programmer to execute task
2 booleans
3 && - and, II - or , ! -Not

What are operators? computer instructions for mathematical operations in the evaluation of expressions
What binary operators do you know? || && Nand Xor not < > <= >= <> (not equal)
What logical operators do you know? - + / mod div ++ –

I may have those mixed up.

  1. Operators are a special symbol(s) performing specific operations on one, two or three operands and then returning a result

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

  3. ||, &&, !

  1. Operators are elements which are used to manipulate values; addition, substraction, greater than, and, or, etc.
  2. ,>=,<,<=,==,!=

  3. &&, ||
  1. Operators perform computation between values to obtain a combined value.
  2. Boolean true or false are binary operators.
  3. And, Or and Not are logical operators.
  • What are operators?
    Operators is like a tool that takes one or more values and changing/creating a new value. Its with operators and values in a “sentense” we call expressions.

  • What binary operators do you know?
    +, -, /, *, %, <, >, ==, ===, !=, <=, >=, &&, II

  • What logical operators do you know?
    and, or, not

  1. What are operators?
    Operator is a expression that says what kind of action to take between two values or objects.

  2. What binary operators do you know?
    all arithmetic operators (+, -, *, /, =, %) are binary as well as logical operators (>, <, =, !, &&, ||)

  3. What logical operators do you know?
    <, >, =, !, &&, ||, &, | and some combinations of those.

1:What are operators?
Operators are symbols used in a expression or a statement to specify the operations to be performed during evaluation of the expression.
2. What binary operators do you know?
+, -, /, * and %. Two inputs/values are needed to execute the operator and to give any meaning. As well as Boolean operators as, <,>,<=,>=,==,!=,===,!==.
3. What logical operators do you know?
<,>,<=,>=,==,!=,===,!== are Boolean operators, but logical operators as &&, ||, ! or != are used to give logic.

  1. Operators are “verbs” to values : Operators tell the program what to do with vlaues (ex + add / % percentage) of some imputed values

  2. Basic Arithmetic are the best example of binary operators (ex: +, - , / ,*)

  3. && And, || or, ! not (as in NOT equal !=)