Boolean Expressions Reading assignment

  1. What are operators?

Operators are constructs that apply to variables and perform various operations upon them.

  1. What binary operators do you know?

Some binary operators include equal, not equal, less than, greater than, greater than or equal to, less than or equal to.

  1. What logical operators do you know?

I know the logical operators - and, or, not.

1 Like

What are operators?
Operators are symbols that are used to assign values, compare values, perform arithmetic operations, determine the kind of a value or reason about a value or pick a value in base of a condition.

What binary operators do you know?

  • all the arithmetic operators : + , - , * , / (the - can be unary too)
  • the comparison operators : > , < and >= , <= , == , !=
  • 2 of the logical operators : && (and), || (or)


    What logical operators do you know?
    && (and), || (or), ! (not)
1 Like
  1. Operators are symbols that tell the compiler to perform specific mathematical or logical manipulations.

  2. Binary operators:
    . Multiplicative operators: multiplication (*), remainder (%), and division (/)
    . Additive operators: addition (+) and subtraction (-)
    . Shift operators: left shift (<<) and right shift (>>)
    . Relational operators: less than (<), less than or equal to (<=), greater than (>), and greater than or equal to (>=)
    . Equality operators: equality (==) and inequality (!=)

  3. Logical operators: and, or, not.

1 Like
  1. Operators are symbols that modify values, or compare values.
  2. +,-,/,*,%.
  3. ||, &&.
1 Like

1- and, or, and not. These can be used to “reason” about Booleans.

2- < less than, > greater than, <= less than or equal to, >=greater than or equal to, == equal to, != not equal to.

3- && and, I I, or, ! not.

1 Like
  1. Operators are symbols that tell the program what to do with certain values within the program to evaluate a function or equation.

  2. <, >, <=, >=, ==, !=   greater than, less than,  greater than or equal to,  less then or equal to, equal to, not equal to.
    
  3. && logical and
    || logical. or
    ? : logical conditional

1 Like

Operators are classified as either unary or binary. Unary operators only require one value, whereas binary operators require two values. The “-” operator can be used as either an unary or binary operator.

Binary operators include *,/,+,-,<,>,or any operation that only requires at least 2 values.

Logical operators are && , || , == , != , ? , and !

1 Like

1- Operators perform an operation in Javascript which could range from addition, to comparison of a set of numbers, to determining if two values are true or false.

2- Binary Operators known to name a few: addition(+), subtraction (-), division (/), multiplication (*), and modulo operator (%).

3- Logical Operators known: and(&&), or(||) and not(!)
a) The && operator represents logical and. It’s result is true is both values given are true.
b) The || operator represents or. True is produced if either of the values given to it are true.
c)Not is shown as an exclamation mark(!). This operator will flip the value given to it; !true becomes false, and !false produces true.

1 Like

Operators are expressions that allow you to combine and transform values, they can be binary, unary, or ternary.
2.
Binary operators are used in arithmetics with the +, -, *, /, and % signs; in string concatenation with + sign; in comparisons with ==, !=, ===, !==, <, >, <=, >= signs.
3.
Logic operators are expressed with the use of && sign meaning “and”; and | | sign, meaning “or”.

2 Likes

What are operators?
My answer was incomplete - BlogChain_Charles above give the correct answer :-
Operators are expressions that allow you to combine and transform values, they can be binary, unary, or ternary.
What binary operators do you know?
+, -, /, *
What logical operators do you know?
&&, ||, !=

1 Like

What are operators?
Operators are functions that evaluate or manipulate values
What binary operators do you know?
<,>,=, +, -, /, *, there are also combinations of those operators that serve as different functions such as <=,>=,!=, ===,
What logical operators do you know?
And: &&
or: ||
not: !

1 Like
  1. Operators are symbols such as multiply, divide, add, subtract. They tell a program what to do with different values that are input.
  2. == < > / + *
  3. && ||
1 Like

Answer:
1.Operators are “+”, “-”,"*", “/”, etc. They are used to perform operations with the values.
2. * Equal (==)

  • Not equal (!=)
  • Less than (<)
  • Greater than (>)
  • Greater than or equal to (>=)
  • Less than or equal to (<=)
  • Logical AND (&&)
  • Logical OR (||)
  • Plus (+)
  • Minus (-)
  • Multiplication (*)
  • Divide (/)
  1. && -> AND, || -> OR, ! -> NOT
1 Like
  1. Operators tell the program what to do with values, add, subtract ,multiply etc.
  2. Boolean
  3. And ,or, equal to.
1 Like
  1. What are operators?: They are reserved symbols for inline modification or combination of 1 (unary), 2 (binary) or 3 (ternary) values

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

  3. What logical operators do you know?: &&, ||, !

1 Like
  1. The symbols used to make an expression.

  2. < > + - * /

  3. && <= >= == ||

1 Like
  1. What are operators?
  • Operators perform some type of operation based on data input
  1. What binary operators do you know?
  • Binary operators are greater than (>) and less than(<)
  1. What logical operators do you know?
  • Logical operators are and(&&), or(||), and not(!)
1 Like
  1. Operadores são comandos utilizados para realizar operaçÔes diversas e comparaçÔes entre diferentes valores.

  2. Aritméticos, Comparativos, Lógicos e ConcatenaçÔes.

&& And
ll Or
?: Operador condicional

?
Can you post the answer in english?
Ivo

  1. ***What are operators?

value that distinguishes between only two possibili- ties, like “yes” and “no”

  1. ***What binary operators do you know?

The > and < signs are the traditional symbols for “is greater than” and “is less than

  1. ***What logical operators do you know?

and, or, and not

1 Like