Division Symbol (/):The division symbol (/) is used in programming to perform the mathematical operation of division between two numbers. It takes a dividend (the number being divided) and a divisor (the number dividing the dividend), and returns the quotient (the result of division).
Modulo Operator (%):The modulo operator (%) is used in programming to find the remainder when one number is divided by another. It takes a dividend and a divisor, and returns the remainder after performing division.
Addition Operator (+): The addition operator (+) is used in programming to perform the mathematical operation of addition between two numbers. It takes two operands, one on each side, and returns their sum.