Boolean Expressions Reading assignment

  1. Operators are functions that will manipulate values.

  2. Some binary operators are arithmetic functions like: < , > , + , * , ==

  3. Some logical operators that are used to “reason” with Boolean values are: && , II , !

1 Like
  1. Operators is a symbol that tells the compiler or interpreter to perform specific mathematical, relational or logical operation and produce final result.
  2. “*” Multiply, / Divide, + Add, - Subtract, % Remainder, == =! Equality
  3. && Logical and, || Logical or, ! Not
1 Like
  1. What are operators?

an operator is a special character or set of characters that will manipulate values to create a new outcome or result.

  1. What binary operators do you know?

Addition, Multiplication, Subtraction, Division

  1. What logical operators do you know?

&& , ||, !

1 Like
  • What are operators?
    They are used to perform arithmetic on numbers. They are classified as unary, binary and/or Ternary.

  • What binary operators do you know?
    Arithmetic operations: + - * / %
    Comparision operators such as <> >= <=

  • What logical operators do you know?
    && and ||

1 Like
  1. Operators perform some operation on single or multiple operands (data value) and produces a result. They can be symbols and words.
  2. Arithmetic Operators (+, -, *, /, %), Comparison Operators (==, ===, !=, <, >, <=, >=),
  3. && (And Operator), || (Or Operator), ! (Not Operator)
1 Like
  1. Operators let manipulate values (putting values in “action”)

  2. Binary operators:
    TRUE and FALSE

  3. Logical operators:
    && - and
    I I - or
    ! - not

1 Like
  1. Operators are objects that can change a value…
  2. Assignment operatiors, arithmetic, logical, string, comparison, relational…
  3. !==- ==, >=, <=
  1. An operator performs some operation on single or multiple values and produces a result. For example 1 + 2, where + sign is an operator.

  2. Binary operators that i know are: +, -, *, /, <, >, <=, >=, ==, ===, %, !=

  3. Logical operators that i know are: &&, || and !

1 Like
  1. Operators allow us to combine and/or transform values.

  2. +, -, *, /, %

  3. &&, ||

1 Like
  • What are operators?

Purpose is to assign & compare values, and perform arithmetic operations

  • What binary operators do you know?

Addition, Subtraction, Multiplication, Division

  • What logical operators do you know?

&&, II, !

1 Like
  1. operators are symbols that perform a certain action to their values known as operands.
    You can use operators to calculate, assign, compare values.
  2. Binary operators are operators that require two operands to function.
    arithmetic oprators (include % )
    comparaison operators (==, <,<=,>,>=)
    L ogic operators (&&, ||, !=)

3.AND, OR, NOT.

1 Like
  1. operators perform an arithmetic function on 2 or few different inputs and execute the result.

  2. Boolean, ex: YES/NO, TRUE/FALSE and etc…

  3. Or II, And &&, Not !

1 Like
  1. Operators are used to assign values, compare values, perform arithmetic operations, and more.

  2. Boolean, +, -, /, *, <, >, ==, !=, ===

  3. && and ||

1 Like
  1. Operators are symbols that tell the compiler to perform certain manipulations.
  2. Greater than , less than, greater than or equal to, less than or equal to, equal to, not equal to
  3. And, or, not
1 Like
  1. What are operators?
    A: Operators are items such as >, <, ==, etc. Operators are used to assign values, compare values, etc.

  2. What binary operators do you know?
    A: Some binary operators: >, <, ==, >=, <=, !=.

  3. What logical operators do you know?
    A: Some logical operators: &&, ||, !true, !false.

1 Like
  1. What are operators?
    Operators are symbols (and sometimes words “unary”) that perform some type of operation on single or multiple values (operands) and produces a result.

  2. What binary operators do you know?

  • add, - subtract, * multiply, / divide, % modulus, < less than, > greater than, && logical and, || logical or, == equal, != not equal, === precisely equal, !== not precisely equal, and more.
  1. What logical operators do you know?
    && and, || or, ! not, ? : ternary
1 Like
  • What are operators?
    Operators are symbols/commands between two values or strings.

  • What binary operators do you know?
    All operators that can be used whit two values are binary Example
    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 (/)

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

1 Like
  1. What are operators?

Operator are functions that can be placed before, between or after a value/s and generate a new value.

  1. What binary operators do you know?

*<, >, >=, <=, +, -, /, , % etc

  1. What logical operators do you know?

&&, ||, !

1 Like
  1. An operator is a function that can resolve the members of the function.
  2. Binary operators will solve operations with members. We can operate with additions, subtractions, equality all logical operators (and, or, etc).
  3. Logical operators resolve Boolean operations, we can use and, or, nand, nor, xor, etc.
1 Like
  1. The work down by two variables, arithmetic operators are +,-,%,*
    2.=,>,<,!=
  2. And(&&), or(||), not(!)
1 Like