Home > Software design >  Modulus operation
Modulus operation

Time:10-12

When you do division operation, the number that is being divided is called the dividend, and the number that it is dividing is called the divisor.

Question: When you do modulo operation, is there a defined naming for the two numbers involved in the operation?

CodePudding user response:

Same names, the number that is being divided is called the dividend, the number that it is dividing is called the divisor and the remaining number is called remainder.

I hope I understood your question correctly.

  • Related