Boolean Expressions Reading assignment

the two last answer were false. do not look at it :smiley:

1.) Operators are applied to and handle the relationship of values in a particular way and thereby essentially create a new value.
2.) <, >, !=, ==
3.) &&, ||, !, ?

  1. operators are β€œactions” that can be executed upon values, or it would correspond to a verb in a phrase (or expression), where values would be the subject and object of the phrase.
  2. for arithmetic (+, -, *, /, and %), string concatenation (+),
    comparison (==, !=, ===, !==, <, >, <=, >=), and logic (&&, ||)
  3. logical operators (&&, ||, !),
  1. An operator is something that acts upon values. i.e the + operator adds values. The || compares as an OR statement.

  2. Binary operators: And, Or, Not, Nand, Nor, Xor, <<, >>, >>>

  3. Logical operators: ==, !=, ===, !==, <, >, <=, >=

  1. Operators used to combine the values, transform the values and compare the values. There are different types of operators
    Binary operators : +, - , / , %, *
    String concatenation operator : +
    logical operators: &&, ||
    Comparison operators : <, >, <=, >=,==
  2. Binary operators : +, - , / , %, *, <, >, <=, >=, ==
  3. logical operators: &&, ||, !
  1. What are operators?
    Operators can combine and transfer values

  2. What binary operators do you know?
    < > =
    e >= (greater than or equal to), <= (less than or
    equal to), == (equal to), and != (not equal to)

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

Operators are functions that work out mathematical operations.
The greater than > and less than < signs are binary operators that work with Boolean Values.
Logical operators would include and or not that can be used to reason with Boolean values.

  1. They operate on variables
  2. Booleans
  3. AND, OR, NOT

What are operators?

Operators make that variables can connect and interact with each other.

What binary operators do you know?

>

<

=

What logical operators do you know?

&& : and

|| : or

! : not

  1. Operators are things like + and * … they act on values
  2. Addition, Subtraction, Multiplication, Division, Modulus
  3. and, or, not && || !

What are operators?

Operators allow you to evaluate conditions and do calculations

What binary operators do you know?

< less than

> greater than

== = equals

What logical operators do you know?

&& = and

|| = or

? = conditional operator

  1. What are operators?
    Operators can be symbols that perform arithmetic functions, or words that produce a string value.

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

  3. What logical operators do you know?
    AND, OR, NOT

  1. What are operators?
    operators are objects, used to asign value, compare value, or do arithmetic operations.
  2. What binary operators do you know?
    A binary operator is an operator that operates on two operands and manipulates them to return a result . the form is operand1 operator operand2 .
        • / % = !=
  3. What logical operators do you know?
    Logical AND (&&) and logical OR (||) are called logical operators. They compare operands and return a result of either true (1) or false (0)
  1. What are operators?
    operators manipulate values such as multiplying, addition, division etc.
  2. What binary operators do you know?
    binary operators we know are booleans
  3. What logical operators do you know?
    and or not
  1. What are operators?
    Operators work with the value that are standing next to it, it takes action with te values. The result is a new value.
  2. What binary operators do you know?
    • / * > < => =< % == != === !==
  1. What logical operators do you know?
    ||
    &&

What are operators?
They are the parts of the code that instruct action to be taken on variables. Such as + or -

What binary operators do you know?
+ - * /

What logical operators do you know?
> greater than
< less than
( and an = after for greater than and equal to >=)
== Equal
!= Not equal
&& And
|| Or

  1. What are operators?
    Operators are symbols you can use to performs different operations with values and numbers
  2. What binary operators do you know?
    +, -, *, /, and %, ==, !=, ===, !==, <, >, <=, >=,
  3. What logical operators do you know?
    &&, ||
  1. Operators assign values, compare values, perform arithmetic operations, and more
  2. ==, ===, >, <, =>, <=, !.
  3. ||, &&
  1. Operators are functions in JavaScript to manipulate or perform on value(s) given, e.g. arithmetic (+, -, *, /), comparison (<, >), logical (and, or, not).

  2. Operators that use 2 values e.g.+, - ,*, / , <, >, <=, >=, ==, !=.

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

  1. Javascript operators are used to assign values, compare values, perform arithmetic operations and more.
  2. , < , * , + , % , == , <= , >= , !=

  3. && - and , || - or, ! - Not
1 Like