Boolean Expressions Reading assignment

Operators are used to assign or compare values, perform arithmetic operations and more between variables and/or values.

< less than

greater than
== equal to
<= less than or equal to
= greater than or equal to
== equal to
!= not equal to

&& and
|| or
! not

2 Likes

1 Operators allows you to evaluate the problem.

2 Mostly arithmetic operators

3 And - &&
Or - ||
equal to - ==
grater than - >
less than - <

1 Like
  1. Operators are functions that are placed in between two values that make up an expression. e.g. 6*8
  2. +*/-==<=>=!=
  3. && and ||
1 Like
  1. What are operators? symbols or text that is used for arithmetic, logical or relational computations.
  2. What binary operators do you know? - + * / % < >
  3. What logical operators do you know? && || !
1 Like

Boolean Expressions Reading assignment

  1. What are operators?
    JavaScript operators are symbols that are used to perform following tasks:
  • assign values;
  • compare values;
  • perform arithmetic operations;
  • and more…
  1. What binary operators do you know?
  • Equal (==)
  • Not equal (!=)
  • Less than (<)
  • Greater than (>)
  • Greater than or equal to (>=)
  • Less than or equal to (<=)
  • Plus (+)
  • Minus (-)
  • Multiplication (*)
  • Divide (/)
  1. What logical operators do you know?
    Logical AND (&&) and logical OR (||) are called logical operators.

They compare operands and return a result of either true (1) or false (0).
In logical AND, if both operands are true then the result is true. If either one of the operands is false, the result will be false. In logical OR, if both operands are true or either one of the operands is true then the result is true. If both operands are false then the result will be false.

G.

1 Like

1.operators are used to perform an operation on a single or multiple operands(values) and gets a result.
2. Arithmetic, Strings, comparison.
3.&&(and),||(or),!(not).

1 Like
  1. they are symbols that invoke an action upon two or more values
    • = * / < >
  2. &&, ||, !
1 Like

Q1. What are operators?

Operators are symbols that tell the program what to do with various values within the program to accomplish a certain function.

Q2. What binary operators do you know?

Less than (<), Greater than, (>), Equal to (==), and various combinations of the three.

Q3. What logical operators do you know?

And (&&)
Or (||)
Not(!)

1 Like
  1. An operator calculates a value.
  2. Addition +
    Subtraction -
    Multiplication *
    Division /
    Remainder %
    Less than <
    Greater than >
    Less than or equal to <=
    Greater than or equal to >=
    Equal to ==
    Not equal to !=
  3. And &&
    Or ||
    Not !
1 Like
  1. What are operators?

    Operators are the designation of instruction… They are the instruction to perform a specific function such as add or multiply.

  2. What binary operators do you know?

    Plus, Minus, Tim,es and divide

  3. What logical operators do you know?

    Well functions such as false and true come to mind.

1 Like

What are operators?

An operator performs some operation on single or multiple operands and produces a result.

What binary operators do you know?

< less, > greater, == equal and a combination

What logical operators do you know?

&& as AND, || as OR, ! as NOT

2 Likes
  1. with operators you can tell the program/the computer what to do with two or more values. E.g. +,- , a comparison, etc.

  2. binary operators have only 2 possible outputs: true/false. You can use the following symbols to get a true or false (boolean) output: <, <=, >, >=, =, ==, ===.

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

1 Like

Operators are the tools we use to relate two values and produce a new value using mathematics and logic. In other words, they are the symbols that allow us to apply arithmetic, such as addition, subtraction, multiplication, and division. We also use them to compare and evaluate the differences and similarities of values. Also, there is an arithmetic operator we use for finding the remainder in a math equation, which we call the modulo.

What binary operators do you know?
Addition (+)
Subtraction (-)
Multiplication (*)
Division (/)
Less than (<)
Greater than (>)
Equal (==)
Not Equal (!=)
Less than or equal to (<=)
Greater than or equal to (>=)
logical and (&&)
logical or (||)
logical not (!)

What logical operators do you know?
&& (logical and) || (logical or) ! (logical not) ? : ( conditional operator)

1 Like
  1. Operators are symbols, which perform logical and math function on values.
  2. +, -, *, /, %, <, >, >=, <=, ==, !=, &&, ||.
  3. &&, ||, !
1 Like
  1. Operators are used to assign, compare, and manipulate values.
  2. Binary = 2 values. ex: =, <, >, != , etc. Arithmetic operators are binary operators, but binary may not arithmetic.
  3. And (&&), Or (||), Not(!)
1 Like

1.Operators used to perform an operation on two or one values in the console , we can use them for different logical or mathematical operations .

2.binary operators + - * / % == > <

3.logical operators && || !

:grinning:

1 Like
  • What are operators?
    An operator in a programming language is a symbol that tells the compiler or interpreter to perform specific mathematical, relational or logical operation and produce final result.
  • What binary operators do you know?
    Binary operators are those operators that work with two operands. For example, a common binary expression would be a + b—the addition operator (+) surrounded by two operands. The binary operators are further subdivided into arithmetic, relational, logical, and assignment operators
  • What logical operators do you know?
    And, or, and not
1 Like
  1. What are operators? Operators allow us to bring the power of arithmetic, logic, and comparison to javascript expressions
  2. What binary operators do you know? +, -, *, /, &&, ||, <, >
  3. What logical operators do you know? &&, ||, !,
1 Like
  1. Operators lies between two values defining the work to do with those. Comparing to language the operator are the verb, the left-hand value is the subject and the right-hand value is the complement object.

  2. Binary Arithmatic operators are:
    + ; - ; * ; / ; %
    Comparison operator:
    ==, !=, ===, !==, <, >, <=, >=

  3. Logical operators are: &&, ||

1 Like
  1. operators are devices that change the output of an equation.
  2. +,-, *, /
  3. And &&, Or ||, Not !
1 Like