Boolean Expressions Reading assignment

1. What are operators?
Operators allow you to perform an action on something.

2. What binary operators do you know?

    • / * > < = ==

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

1 Like

What are operators?
Usually mathematical symbols that indicate operations with the values.

What binary operators do you know?

Arithmetic operators: + - * / %
Comparison operators: < > <= >= == !=
Logical operators: true/false on/off yes/no || &&
Conditional operator true? false?
What logical operators do you know?
&& || !

1 Like

What are operators?
symbols that help you perform calculations/actions on values (or through variables)
What binary operators do you know?
+,-,/,*,%
What logical operators do you know?
and , or , && , ||

1 Like
  1. What are operators?
    Operators are things such as addition, subtraction, multiply, division, and, or, not etc. values that can be used to operate strings and values.

  2. What binary operations do you know?
    general mathematical operations (-,+,=,/,*)

  3. what logical operators do you know?
    and, or, not, not equal to, not a number.

1 Like

What are operators?
A piece of code that does something with a object.
What binary operators do you know?

, <, >=, <=, ==, !=, ===
What logical operators do you know?
&&, II, !

1 Like

1 - some kind of functions. Uses a value or some values as an input and outputs a new value.
2. >=,<=,== ,!=
3. && = and ; || = or; ! = not;

1 Like
  1. constructs which behave generally like functions, but which differ syntactically or semantically from usual functions
  2. add, substract, multiplicate, divide
  3. AND OR XOR
1 Like
  1. operators - a manipulator of values

  2. binary operators - boolean (they use two values, eg. false/true), arithmetric

  3. logical operators - and/or/not (&& / || / !)

1 Like

Q1: What are operators?
Operate operand.

Q2: What binary operators do you know?

  • Assignment operators
  • Comparison operators
  • Arithmetic operators
  • Bitwise operators
  • Logical operators
  • String operators
  • Comma operator
  • Relational operators

Q3: What logical operators do you know?
Logical AND (&&) Logical OR (||) Logical NOT (!)

1 Like
  1. What are operators? The operators are the symbols that enables you to perform operations with values ( e.g. + - / *)

2 What binary operators do you know? The basic binary operators are +,-,/,*,%

  1. What logical operators do you know? JavaScript supports three logical operators: and, or, and not.
1 Like
  1. Operators are symbols which indicate operations carried with values.
  2. Binary operators are operators operated on two values. Operators which operated on only one value called unary operators.
  3. There are three logical operators AND (&&), OR (||), NOT (!).
1 Like

What are operators?
Putting an operator between two values will apply it to those values and produce a new value.

What binary operators do you know?
<,>,=
What logical operators do you know?
And, Or, Not.
&&, II, !

1 Like
  1. Operators are functional objects that can manipulate values in your code. These include +, -, *, /
  2. Binary operators: >, >=, <, <=, ==, !=
  3. Logical operators: &&, ||, !
1 Like

–Boolean operators are simple words used as conjunctions to combine or exclude keywords.
–Binary operators are used when a data type can only have one or two values, such as: yes/no, on/off, or true/false.
–Some logical operators are: and, or, & not.

1 Like
  1. What are operators? Operators are symbols that apply action to values

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

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

1 Like
  1. Operators apply actions to values
  2. Equal ==, not equal !=, less than <, greater than >, greater than or equal to >=, less than or equal to<=,
    plus, minus, multiplication, divide ±*/, modulus %
  3. logical and &&, logical or ||
1 Like
  1. What are operators?
    Operators are used to perform arithmetic/logic operations on value/s
  2. What binary operators do you know?
    : + - * / % > < == === etc.
  3. What logical operators do you know?
    && || ?: etc.
1 Like

1.) What are operators?

Answer: Actionable methods of changing values.

2.) What binary operators do you know?

Answer: == equal to, != not equal to, < less than, <= less than or equal to, > greater than, >= greater than or equal to

3.) What logical operators do you know?

Answer: ! Logical NOT, && Logical AND, || Logical OR

1 Like
  • What are operators?
    Are symbols used to perform different operation on values or variables. They can be unary, binary or even ternary depending on how many values they are working on.

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


  • What logical operators do you know?
    &&, ||, !

1 Like
  1. Operators are all you to manipulate values in a program to accomplish a function
    2.a!<, ==,+>,!=
  2. And &&, or||, Not(!)
1 Like