Boolean Expressions Reading assignment

  1. What are operators?
    Operators are symbols indicating certain value like greater or less than.

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

  3. What logical operators do you know?
    and &&, or ||, not ? 1 : 2

1 Like
  1. What are operators?

A operator is a symbol that takes a value, does something to its value and spits out another value.

  1. What binary operators do you know?

+, -, *, / etc…

  1. What logical operators do you know?

And, or, not ("&&,||,!")

1 Like

What are operators?

symbols or words that perform operations on values

What binary operators do you know?

addition, subtraction, multiplication, and division

What logical operators do you know?"

and = &&
or = | |
not = !

2 Likes
  1. Operators perform an operation on the data value. They are functions that do not need a special name, + - * these are mathematical operators.
  2. False/True types include comparison operators such as < ,>, + - *
  3. and (&&), or , and not. ! flips the value it operates on. So !True goes to false and !false goes to true.
1 Like

- What are operators?

Operators are symbols that tell the program what to do with various values within the program to accomplish a certain function.
Putting an operator between two values will apply it to those values and produce a new value.

- What binary operators do you know?

The > and < signs are the traditional symbols for “is greater than” and “is less than,” respectively. They are binary operators.

Other similar operators are:

= (greater than or equal to);
<= (less than or equal to);
== (equal to);
and != (not equal to).

- What logical operators do you know?

JavaScript supports three logical operators: and, or, and not.

The && operator represents logical and. It is a binary operator, and its
result is true only if both the values given to it are true.

The || operator denotes logical or. It produces true if either of the
values given to it is true.

Not is written as an exclamation mark (!). It is a unary operator that flips
the value given to it—!true produces false, and !false gives true.

1 Like
  1. Operators are use to perform arithmetic calculations with numbers. Examples or them are: “+”, “-”, " * ", " / ", for add, subtract, multiply or divide numbers.

  2. Boolean operators that return True of False like " > ", " < ", " == “, " !=”, greater than, lower than, equal to or not equal to for example.

  3. “and”, “or”, " not " represented by “&&”, " || " and " ! " respectively.

1 Like

1. Operators are functions that work on different type of values in programming language.
2. ==(equal to), ===(equal value AND equal type), !=(not equal), !== (not equal value OR not equal type),< , >,<= , >=
3. && , || , ! are logical operators which return true or false.

1 Like
  1. Used to assign values, compare values and do arithmetic
  2. +, -, *, /, <, >, &&, ||,
  3. &&, ||, !
1 Like

1. What are operators?

An operator is used between two values in order to apply conditions and logic to those values and produce a new value.

2. What binary operators do you know?

Binary Operators are defined as operators which need 2 inputs.
+, -, *, /, , %, ==, ===, !=, !==, <, >, <=, >=, &&, ||, log, etc…

3. What logical operators do you know?

&& (and), || (or), ! (not)

1 Like
  1. Within Javascript operators are used to assign values, perform arithmetic operations, assign conditions, logic, compare values, etc. Binary operators will take two values, and unary operators will take one.

  2. Arithmetic operators are binary operators. They take two inputs and provide an output. Booleans are also considered binary operators.

  3. &&, ||, ! are considered logic operators.

1 Like

1. What are operators?
operators are objects witch allow you to make calculations/manipulate values
2. What binary operators do you know?
*,+,/ also (<,>,==)
3. What logical operators do you know?
And:&&
Or:ll
Not:!

1 Like
  1. What are operators?
    Operators are symbols putting between two values.

  2. What binary operators do you know?
    +, -, *, /, <, >, +, yes, no, true, false, on, off.

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

1 Like
  1. What are operators?
    Operators perform an operation between values.

  2. What binary operators do you know?
    +, -, *, /

  3. What logical operators do you know?
    <, >, <=, >=, &&, ||, !

1 Like

What are operators?
Answer: An operator is a function that manipulates a value.

What binary operators do you know?
Answer: +, -, *, /, %, >, <, >=, <=, ==, !=

What logical operators do you know?
Answer: ‘and’, ‘or’, and ‘not’

1 Like

Reading Asignment Answers:

  1. Symbols in JScript that use value in an operation.
    2.<> == are binary operators
  2. && || are two logical operators.
1 Like
  1. Operators are symbols performing an operation.

  2. Booleans, Binary operators; Addition, Substraction, Division, Multiplication, Equals to, Less than, Greater than

  3. Logical Operators:
    &&
    !
    ||
    ?

  1. In computer programming and at the command line, an operator is an object that is capable of manipulating a value or operator.
  2. = + - / * > <
  3. ! || &&
1 Like
  1. Operators a like functions which when applied to a set of values produces a new value.
  2. Addition(+), Multiplication(*), Subtraction(-), Division(/), Modulos(//)
  3. And(&&), Or(||) and Not(!)
1 Like
  1. Operators are functions that operate on base values.

  2. +, *, -, <,> etc.

  3. &, ! etc.

1 Like
  1. Operators are used to generate a outcome
  2. Binary operators are: +,-,/,*
  3. Logical operators are: &&, II, !
1 Like