About Lesson
Arithmetic Operators:-
Operands के बीच में mathematical operation करने के लिए arithmetic operators’ का इस्तेमाल होता है|
Operator |
Meaning |
Example |
Result |
+ |
Addition |
20+10 |
30 |
– |
Subtraction |
20-10 |
10 |
* |
Multiplication |
20*10 |
200 |
/ |
Division |
20/10 |
2 |
% |
Modulus |
20%3 |
2 |
** |
Exponential |
2**3 |
8 |
Arithmetic Operators:-
Arithmetic operators are used to perform mathematical operations between operands.
Operator |
Meaning |
Example |
Result |
+ |
Addition |
20+10 |
30 |
– |
Subtraction |
20-10 |
10 |
* |
Multiplication |
20*10 |
200 |
/ |
Division |
20/10 |
2 |
% |
Modulus |
20%3 |
2 |
** |
Exponential |
2**3 |
8 |