Boolean Expressions Reading assignment

  1. Operators are values that dictate arithmetic operations.
  2. +, -, *, /, <, >, =, ==, !=,
  3. and &&, or ||, not (!)
1 Like
  1. What are operators?
    A operator is a symbol that is used to perform an operation.

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

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

1 Like
  1. Operators are symbols or words that processes values to produce another value.
  2. Binary operators uses two values to do the operation.
  3. Logical AND, OR, and NOT.
1 Like
  • What are operators?

An operator performs an action on one or more values. Values are not always numeric therefore operators do not always perform arithmetic operations.

  • What binary operators do you know?

(+) Add
(-) Subtract
(*) Multiply
(/) Divide
% Modulo
== Equal
!= Not Equal
< Greater than
(>) Less than

  • What logical operators do you know?

&& And
|| Or
! Not

1 Like
  1. objekt that can manipulate values

    • / * -
  2. && || !

1 Like

1 - An action to calculate or evaluate one(unary), two (binary) or more variables or values.

2 - The > and < signs.

3 - and &&
or ||
not !

1 Like
  1. What are operators?
    They are objects that are capable of changing values using symbols like -,+,%.

  2. What binary operators do you know?
    Arithmetic, relational, logical, string. compare values.

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

1 Like

What are operators?

An operator performs some operation on single or multiple operands (data value) and produces a result.

What binary operators do you know?

< less than

“>” greater than

== equal to

<= Less than or equal to

What logical operators do you know?

&&, ||, !

1 Like

1 Operators are ways of manipulating data
2 The binary operators are greater than (>) Less than (<). The minus operator can be used for unary and binary operators.
3 The logical operators used are and, or and Not

1 Like
  1. Operators exist in many different programming languages. They carry out operations on either single or multiple data values (in JavaScript, it’s unary, binary, and ternary) such as arithmetic, comparison, logic or other operations.

  2. Binary operators: > , <., = , !=, ==, !==,

  3. Logical operators: &&, ||

1 Like
  1. What are operators?
  • An operator performs some operation on single or multiple operands (data value) and produces a result.
  1. What binary operators do you know?
  • Multiplicative operators: multiplication (*), remainder (%), and division (/)
  • Additive operators: addition (+) and subtraction (-)
  • Relational operators: less than (<), less than or equal to (<=), greater than (>), and greater than or equal to (>=)
  • Equality operators: equality (==) and inequality (!=)
  • Bitwise operators: AND (&), OR (|), and XOR (^)
  • Logical operators: AND (&&) and OR (||)
  1. What logical operators do you know?
  • AND (&&) and OR (||) with a result of either 0(false) or 1(true)
1 Like
  1. Operators are symbols that tell a compiler to perform operations (relational, mathematical, logical) between values and produce a final result.

  2. Relational: ==, ===, !=, !==, >, >=, <, <=, in
    Bitwise: |, &, ^
    Logical: &&, ||
    Arithmetic: +, -, *, /, %, ++, –

  3. &&, ||, !

2 Likes
  1. What are operators?
    Operators are used to assign/compare values and conditions. An operator that uses one value is a Unary operator and two values is a Binary operator.

  2. What binary operators do you know?
    <(less than), >(greater than), >= (greater than or equal to), <= (less than or equal to), == (equal to), and != (not equal to).

  3. What logical operators do you know?
    && = And, || = Or, (!) = Not

1 Like

Q). What are operators?
A). Operators are the symbols between values that allow different operations like addition, subtraction, multiplication, and more. JavaScript has dozens of operators, so let’s focus on the ones you’re likely to see most often.
Q). What binary operators do you know?
A). &, !, ~, <<,>>,^
Q). What logical operators do you know?
A). AND&&, OR||,NOT!

1 Like
  1. What are operators? They are actions requested to activate the values. like a verb, the add operator will combine two values and present them to you.
  2. What binary operators do you know? <> ±*% ,==, ===, >=,<=,
  3. What logical operators do you know? Javascripts supports 3 logical operators And, or, not.
1 Like
  1. What are operators?
    Answer: Operator like +, -, / and * are used with values.

  2. What binary operators do you know?
    Answer: Strings, Boolean,

  3. What logical operators do you know?
    Answer: And, not and or.

1 Like
  1. Operators are symbols which we use to tell program what to do with values.
    1. Binary operators for JS Arithmatic operators (+, -, *, /, and %), string concatenation (+), comparison (==, !=, ===, !==, <, >, <=, >=).
  2. ||,&&,!
1 Like
  1. Operators are used to tell the computer how values should interact with each other.

  2. True, False

  3. +, -, /, *, and %

1 Like
  1. The operators are the function that allow you to manipulate values.

  2. addition (+), subtraction (-), Multiplication (*), division (/)

  3. greater than (>), less than (<), not equal to (!), or(||), and (&&)

1 Like
  1. Symbols and words used to produce string values. Some examples would be +, -, and, or to name a few.
  2. Operators that use two values. examples would be -, <, >, >=, <=, == and !=.
  3. And(&&), Or(| |) and Not(!).
1 Like