+1 vote
in Class 12 by kratos

What are unary operators, binary operators, relational operators, logical operators, and bitwise operators?

1 Answer

+1 vote
by kratos
 
Best answer
  1. An operator that takes only one operand to perform some operation is called a unary operator.

  2. The operator which takes two operands to perform some operation is called a binary operator.

  3. The operators which perform operation of relation between two operands are called relational operators.

  4. The operators which perform combine or negate the expressions that contain relational operators are called logical operators.

  5. Bit manipulation operators manipulate individual bits within a variable. Bitwise operators modify variables considering the bit patterns that represent the values they store.

...