CBSE Class 10 Computer Applications Question 16 of 31

Python Revision — Question 4

Back to all questions
4
Question

Question 4

What are operators ? What is their function ? Give examples of some unary and binary operators.

Answer

Operators are tokens that trigger some computation/action when applied to variables and other objects in an expression.

Unary plus (+), Unary minus (-), Bitwise complement (~), Logical negation (not) are a few examples of unary operators.

Examples of binary operators are Addition (+), Subtraction (-), Multiplication (*), Division (/).