Boolean Expressions Reading assignment

  1. What are operators?
  • Operators are comanders of functions, telling what to do with input values
  1. What binary operators do you know?
  • All of those that combine 2 elements to produce new one. - Arithmetic, Assignment, Relational and Logical
  1. What logical operators do you know?
  • And - &&
  • Or - ||
  • Not - !
1 Like
  1. What are operators?
  • Operators manipulate values.
  1. What binary operators do you know?

=>
<
<=

!=

  1. What logical operators do you know?

||
&&
!

1 Like

1- An operator is an object that is capable of manipulating a value
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 (/)

3-

  • || (OR),
  • && (AND),
  • ! (NOT),
1 Like
  1. What are operators? β€” a function that returns a result based on inputs as an operation, binary operators take 2 values, unary take 1 and are often text based (minus is both a unary and binary operator), and logical operators are && \ !, ! is a logical and unary operator, ternary operators take 3 values.
  2. What binary operators do you know? > < <= >= == != ++ β€” + - * / %
  3. What logical operators do you know? && \ !
1 Like
  1. An operator performs some operation on single or multiple operands (data value) and produces a result.

  2. +, -, *, /, %.

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

1 Like
  1. Operators in JavaScript assign and compare values, perform math, and create logical structures that give a result.
  2. Examples of binary operators are: +, -, *, /, =, ==, !=, <, >.
  3. Examples of logical operators are: &&, ||, ! .
1 Like
  1. What are operators?

Mostly symbols used to produce an action or perform an operation. Like 1 + 2, the + sign is the operator.

  1. What binary operators do you know?

+ - * / == < > <= >=

  1. What logical operators do you know?

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

1 Like

1, operators use values to create an outcomes
2, < , > , == , <=, >=
3, && , ||

1 Like
  1. What are operators?
    Operators perform math, create logical structures, and compare values.

  2. What binary operators do you know?
    The β€œLess Than” symbol β€œ<”
    The β€œGreater Than” symbol β€œ>”

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

1 Like
  1. What are operators?
    … functions. but they differ syntactically and semantically from functions()
  2. What binary operators do you know?
    … + - * / % ++ – & ^ |
  3. What logical operators do you know?
    … && || !
1 Like

!. Operators are things that either change a value or compare them to other values.
2. Some binary operators are < > ==. Giving a yes/no or an off/on type of feedback.
3. This book said javascript supports three (and/or/not) logical operators. (&&/ll/!)

1 Like
  1. What are operators?

An operator performs some operation on single or multiple operands (data value) and produces a result. … For example 1 + 2, where + sign is an operator and 1 is left operand and 2 is right operand. In the case of Boolean operators, the result comes from a comparison between values, resulting in

  1. What binary operators do you know?

Β±/*

  1. What logical operators do you know?

== > <

1 Like
  1. Operators are like verbs in the grammar of a programming language.
  2. =, <=, ==, !=

  3. ||, &&, !
1 Like
  1. Operators are able to generate new values by acting on a prescribed value(s).
  2. β€œ+” β€œ*” β€œ-” β€œ/”
  3. And &&. Or ||. Not !
1 Like
  1. What are operators?
    Operators are utilized to manipulate, assign or compare values

  2. What binary operators do you know?
    Less then : <
    Greater then: >
    equal to : ==
    NOT EQUAL TO: !=

      • ?
  1. What logical operators do you know?
    And
    Or
    not
1 Like
  1. What are operators?

Operators manipulate values

  1. What binary operators do you know?
    • / *
  1. What logical operators do you know?

And, or, not

1 Like
  1. Operators take values and perform math or logic on them to result in a new value

  2. β€œ+” (addition)
    " -" (subtraction)
    β€œ*” (multiplication)
    β€œ/” (division)
    β€œ>” (greater than)
    β€œ<” (less than)
    β€œ==” (equal to)
    " !=" (not equal to)
    β€œ>=” (greater than or equal)
    β€œ<=” (less than or equal)
    β€œ===” (equal value and type)
    β€œ!==” (not equal value and type)

  3. β€œ&&” (and)
    β€œ||” (or)
    β€œ!” (not)

1 Like
  1. Assign values to the variables and add them together, also takes two values and returns a new value.
    2.+ * / - = % == === && != <> <= >= ? ||
  2. && || ? !
1 Like
  1. What are operators?
    Operators can perform many functions in Javascript. They can be used to assign values, compare values, assign conditions, perform arithmetic, etc.
  2. What binary operators do you know?
    For example with have arithmetic operators such as addition β€œ+”, subtraction β€œ-”. multiplication β€œ*”, and division β€œ/” to name a few.
  3. What logical operators do you know?
    Examples of logical operators I know are: And β€œ&&”, Or β€œ||”, Not β€œ!”
1 Like
  1. Operators do something with values (compare, calculate…).

  2. I know -, +, *, /, ==, !=, <=, >=, <, >, ===, !==.

  3. && --> represents AND, II --> represents OR, ! --> represents NOT.

1 Like