Boolean Expressions Reading assignment

  1. What are operators?
    Operators are symbols that act (perform operations) on values.

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

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

1 Like
  1. What are operators?
    Operators perform an operation on one or multiple values, producing a new value

  2. What binary operators do you know?
    +; -; *; /

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

1 Like
  1. Operators are an object that is capable of manipulating value
  2. <, >, <=, >=, ==, !=
  3. &&, ||,
1 Like

1. What are operators?
Operators are symbols to tell the script which function to apply.

2. What binary operators do you know?
boolean operators

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

1 Like
  1. in short, an operator compares the relationship of two or more values to produce a result. each operator has a specific function that can define, compare, calculate the relationship of the value(s) in an expression.

  2. a binary operator requires two ‘operands’ on either side of it. the most common are ( + - * / )

  3. logical operators are typically used with boolean (logical) values, that return a logical value. examples would be: (AND = &&, OR = ||, NOT = !)

1 Like

1.) Operators perform an operation/function, such as arithmetic or comparison, on values/variables.
2.) Addition + , subtraction - , multiplication * , division / , and remainder % .
3.) And && , Or ||

1 Like
  1. They are expressions of comparison within a function
  2. Greater Than, Less Than, Equals too, Not Equals too.
  3. And (&&), Or (||)
1 Like
  1. Operators are symbols used to tell a program what to do.

  2. +, -, /, *

  3. &&, ==, ||, !

1 Like
  1. What are operators?
    Operators are symbols or words that indicate how we want variables to interact with each other.

  2. What binary operators do you know?
    Reminder (%). Returns the integer remainder of dividing the two operands.

  3. What logical operators do you know?
    The logical operators displayed on Eloquent Javascript are: and( &&), or (||), and not (!).

1 Like

What are operators?
Operators are used to assign values, compare values, perform arithmetic operations, and more.

What binary operators do you know?
“+” (Add)
“-” (Subtract)
“/” (Divided by)
“*” (Multiple)
“%” (Modulus)

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

1 Like
  1. What are operators?
    Some are symbols and some are words. Operators stand for things like addition (+) and multiplication (*). When placed between two values for example, they can produce a new value: 4 + 4 = 8.

  2. What binary operators do you know?
    These are operators that use two values like “greater than” and “less than” symbols < >. Others could be <=, >=, !=, and ==

  3. What logical operators do you know?
    These are operators that can be applied to Boolean values like and, or, and not. &&, ||, and !

1 Like
  1. Operators are special type of functions, that takes one or more arguments and produces a new value. For example : addition (+), substraction (-), multiplication (*) etc, are all operators. Operators are used to perform various operations on variables and constants
  2. Greater than (>) Less than (<) Equal (==)
  3. && (and) !(not)
1 Like
  1. Operators are special objects used by the machine to manipulate a value
  2. Binary operators are all those operators that require 2 values to work. Examples are +, - , * , / , % , <> , >= <= , == , === , !=.
  3. Logical operators are operators we can apply to boolean values themselves like logical and (&&), logical or ( || ) and logical not (!)
1 Like

1, Operators executes operations, e.g. in 4+5 + is an operator which ‘does the job’ and add 4 to 5.
2, Binary operators are only holding two values
True or False
Yes or No
3, Logical operators are ‘and’ ‘or’ and ‘not’
&& stands for and
|| stands for or
! stands for not

A note on the attached webpage https://www.w3schools.com/js/js_booleans.asp
At ‘Everything without a value is false’
I’ve tried all of them but one gave a ‘true’ instead of ‘false’ and a repeated it and still ‘True’
var x;
Boolean (x);
The given answer should have been false but it was TRUE

2 Likes
  1. Are symbols used to perform operations on operands.
  2. Less that(<), Greater than(>), Equal to(==).
  3. And(&&), Or(||), Not(!).
1 Like

What are operators?

What binary operators do you know?

What logical operators do you know?

Operators are like verbs, they are an action. + - * / are all operations on a value.

True/false, on / off, yes/no

And && or || not !

1 Like
  1. Operators are used to compute and compare values.
  2. +, -, *, /, %, +=, -=, <, >, <=, >=, ==, !=
  3. AND(&&), OR ||)
1 Like
  1. What are operators?
    In JavaScript, an operator is a special symbol used to perform values and variables.
    In this example 1 + 2 the + symbol is the operator.
  2. What binary operators do you know?
    == equal to, != not equal to, > greater than, < less than, etc.
  3. What logical operators do you know?
    && and, || or, ! not
1 Like

Operators perform some function on single or multiple operands.

1 Like
        • /
  1. && || ! ? :

1 Like