what is an operator ? explain it's type ?
Answers
Answer:
In computer science, an operator is a character or characters that determine the action that is to be performed or considered. There are three types of operator that programmers use: arithmetic operators. relational operators. logical operators.
RELATIONAL OPERATOR
In computer science, a relational operator is a programming language construct or operator that tests or defines some kind of relation between two entities. These include numerical equality (e.g., 5 = 5) and inequalities (e.g., 4 ≥ 3). ... Relational operators can be seen as special cases of logical predicates.
LOGICAL OPERATORS
AND processing returns a TRUE result for the IF statement only if all the conditional expressions evaluate as TRUE. ... | or OR (OR Boolean operator) OR processing returns a TRUE result for the IF statement if any of the conditional expressions evaluate as TRUE.