Boolean Expressions Reading assignment

1. What are operators?

Operators are symbols to represent particular actions to perform on input value or values.

2. What binary operators do you know?

addition, subtraction, multiplication, division, modulo, and, or, <, >, <=, >=, ==, !=, ===, !==

3. What logical operators do you know?

and, or and not

2 Likes

What are operators?
Symbols that allow a program to evaluate two or more values.
What binary operators do you know?
+,-,*,/,%,>,<,>=,<=,==, !=
What logical operators?
and,or, not

1 Like
  1. Symbols telling a program its function with the help of different values witch allows for certain functions.
  2. operators that use two values are called binary, while those that take one are called unary operators. ex. == <,>,=>,=<
  3. And, or and not
1 Like
  1. Operators are objects that can manipulate values to create booleans.
  2. The binary operators that I understand right now are logical, unary, and comparison.
  3. I know &&, ||, and !
1 Like
  1. operators are operating on values, not all operators are symbols, some as written as words. (eg.: typeof)
  2. (- ; + ; / ; %)
    (< ; > ; == ; <= ; >= ; != )-booleans
  3. ( &&; II ; ! ; ?.. : … )
  1. What are operators?
  • Operators asign value by Unary, Binary and Ternary.
  • Unary, for example, have a typeof operation that which produces a string value naming the type of value you give it.
  • Binary operates on two operands and manipulates them to return a result.
  • Ternary is an operator that takes three arguments.
  1. What binary operators do you know?
  • < Less Than, > Greater Than, <= Less Than or Equal To, >= Greater Than or Equal To, == Equal, !== Not Equal,
  1. What logical operators do you know?
  • Or(||) , And(&&) , Not(!)
  1. What are operators?
    Operators interact and manipulate values to create an expression and ultimately an output of information. They are like the verbs while values are the nouns of JS grammar.

  2. What binary operators do you know?
    Booleans, comparison, logical, assignment, string, conditional

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

  1. Operators are tools to evaluate arguments.
  2. +,-,/,*,<>,=
    3.&&, !,||
  1. Operators are objects used to assign and compare values, and perform arithmetic functions
  2. +, -, *, /, %, <, >, <=, =>, ==, !=, ===, !==,
  3. &&, ||

Hello Ivan and Community,

my answers are:

  1. β€œWhat are operators?”

A operator is between to variables and executing a logical or mathematical task.

  1. β€œWhat binary operators do you know?”

β€˜<<’ and β€˜>>’ and β€˜++’ and β€˜β€“β€™ 'and β€˜/’ and β€˜-’ and β€˜+’ and β€˜%’

  1. β€œWhat logical operators do you know?”

β€˜&&’ and β€˜||’ and β€˜!==’ and β€˜NOT’ and β€˜!’ and β€˜OR’ and β€˜AND’

  1. JavaScript operators are used to assign values, compare values, perform arithmetic operations and more

β€’ Equal (==)
β€’ Not equal (!=)
β€’ Less than (<)
β€’ Greater than (>)
β€’ Greater than or equal to (>=)
β€’ Less than or equal to = (<=)
β€’ AND (&&)
β€’ OR (||)
β€’ Plus (+)
β€’ Minus (-)
β€’ Multiplication (*)
β€’ Divide (/)
3.
β€’ Logical AND (&&)
β€’ Logical OR (||)

operators do basic math, placed between values
+, - , * , /, %, >,<,==, =<, =>,!=
&& - and, II - or , ! -Not

  1. Operators are functions that change values by
  2. <,>,==,!=
  3. &&, ||, !
  1. What are operators?
    An operator is represented by special characters and key words to compare numerical values or character strings.

  2. What binary operators do you know?
    Equal (==) Greater (>) Less (<) greater than or equal (>=) Less than or equal (<=) Not Equal (!=) Plus (+) minus (-) Multiplication (*) Division(/)

  3. What logical operators do you know?
    Logical AND (&&) Logical OR (||)

1. What are operators?
Operators are tools used to operate with values.
2. What binary operators do you know?
The arithmetic operators adding (+), subtracting (-), times (*), division (/), remainder (%), the logical operators and (&&) and or (||) and the comparison operators.
3. What logical operators do you know?
The and operator (&&), the or operator (||) and the not operator (!).

1-What are operators?

Operators are simple commands which result in mathematical or logical answers.

2-What binary operators do you know?

Binary operators require 2 value input in order to work, these operators are like these:

=, +, -, *, /, %, ==, ||, &&, <, >, &&.

3- What logical operators do you know?

|| (β€œor” operator)

&& (β€œand” operator)

! (β€œnot” operator)

1 Like
  1. Operators are symbols or words that operate on value/s or evaluate between values to produce a new value.
  2. Common binary operators are the arithmetic operators, comparison symbols and 2 out of the 3 logical operators (&&, II)
  3. Logical operators are and (&&), or (||) and not (!), that reason about Booleans.

1 +, -, *, /, =
2. ,< and >

3 And or Not

  1. Operators allow you to evaluate conditions and do calculations
  2. Binary Operators
    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. Logiacal Operators
    And (&&)
    Or (||)
    Not(!)

What are operators?

A value that distinguishes between only wo possibilities

What binary operators do you know?

< , >

What logical operators do you know?

&& and ||