Boolean Expressions Reading assignment

  1. What are operators?
    Operators are expression that combine and transform values.
  2. What binary operators do you know?
    Arithmetic ±*/, comparisons ==, !=,===, !==, <,>,<=,>=
  3. What logical operators do you know?
    && for And, || for Or, ! for Not, ?: as a conditonal operator
1 Like
  1. An operator is an object in which can perform a function/manipulation between to variables, such as common math (+,-,/)
  2. There are arithmetic, relational, logical, string, comparison, and assignment operators.
  3. And, or, not.
1 Like
  1. Operators is the computation factor in a function (±*/).

  2. true - False.

  3. ||, logical.

1 Like
  1. What are operators?

operators allow to execute mathematical operations, or you can say that operators allow us to manipulate values.

  1. What binary operators do you know?

Booleans.

  1. What logical operators do you know?

+=, -=, ==, <=, >=, !=

1 Like
  1. What are operators?

The action part of an expression: IE a + b contains 2 values a,b and an operator +.

  1. What binary operators do you know?

greater than
< less than
<= less or equal
= greater or equal
== equal
=== equal in value and type
!= not equal

  1. What logical operators do you know?

&& AND
|| OR

1 Like
  1. Operators are the conditions upon which the values are evaluated (>, <, =, !=, &&, ||, etc.)
  2. +, -, /, % etc
  3. ==, ===, >, <, !=
1 Like
  1. What are operators?

Operators are a special sort of functions that will manipulate values.
Operators are used to assign values, perform arithmetric operations,
compare values, assign conditions, logic, typeof or deletion etc.

  1. What binary operators do you know?

Arithmetic operators are the simples binary operators.
For example: Multiplication, Addition, Shift, Relational, Equality

  1. What logical operators do you know?

AND(&&), OR (||), ! NOT

1 Like
  1. operators assign various values to accomplish function
    2.Less than(<) greater than (>) +/= - *
  2. And (&&) OR (II) Not (!)
1 Like
  1. What are operators?
    Programing logic
  2. What binary operators do you know?
    Booleans
  3. What logical operators do you know?
    == === || && !=
1 Like
  1. ***What are operators?
    Functions that perform actions to values
  2. ***What binary operators do you know?
    ==, !=; <=; >=; <; >; ++
  3. ***What logical operators do you know?
    And (&&), or (II); not (!)
1 Like
  1. Symbols and words that help to carry out a function

  2. multiplicative - * /
    additive + -
    relational <=; <>,=>,>,<
    equality ==, !=, ===

  3. Logical operators are used to determine the logic between variables or values
    &&
    ||
    !

I also came across Bitwise Shift Operators and Binary Bitwise Operators but I do not really understand what they are or what they do. Could someone enlighten me please?

1 Like
  1. Operators are used to manipulate values, they are presented by a symbol that tells the complier what type of operation to perform

  2. for arithmetic : + , - , * , / and %
    for comparison : == , != , === , !== , < , > , <= , >=

  3. logic : && , || , ! , (x ? y : z)

1 Like
  1. What are operators?
    Operators are special symbols that perform specific operations on one, two, or three operands, and then return a result.

  2. What binary operators do you know?

      • / %
  1. ***What logical operators do you know?
    || && !
1 Like
  1. What are operators?
    . + , - , * , /
  2. What binary operators do you know?
    true/false ; on/off ; yes/no
    3.What logical operators do you know?
    and(&&), or(||), not(!)
1 Like
  1. An operator is what defines how values will interact with the other.
  2. +, - , * , / would all be considered binary operators.
    3.&& , || , ! would be considered logical operators.
1 Like
  1. What are operators? Operators compare or manipulate numbers, strings, etc. to arrive at a result that can be used for the next purpose in a program
  2. What binary operators do you know? < less than , > greater than, == equal to , ! = not equal and combinations of these such as >= greater than equal to.
  3. What logical operators do you know? Logical operators in inclued “and” &&. “or”|| , not !,
1 Like

This is incorrect. && , || , ! would be considered logical operators.

Thanks

  1. the operator asign values to variables.
    2.addtion operator, multiplication operator,substraction operator.
    3.or,and,&&
1 Like
  1. operators are + - * / etc etc

    1. <, >, <=, >=, ==, !=
  2. &&, ||, !

1 Like

Operators are elements of code that produce a result or value out of one, two or three values. Operators that need two values are called binary operators. Examples of these are arithmetic symbols for operations like sum, multiplication, or modulo; comparison operators like bigger than or smaller than; and logical operators like AND or OR. There is also a unary operator: NOT, which flips a value.

1 Like