About 344,000 results
Open links in new tab
  1. Modulus Operator in Programming - GeeksforGeeks

    Mar 26, 2024 · The modulus operator, often represented by the symbol '%', is a fundamental arithmetic operator used in programming languages to find the remainder of a division operation between two …

  2. Understanding The Modulus Operator - Stack Overflow

    Jul 8, 2013 · Modulus operator gives you the result in 'reduced residue system'. For example for there are 5 integers counted: 0,1,2,3,4. In fact . The main difference that the answer is given by …

  3. Python Modulo Operator (%): How to Use Mod in Python

    Learn how to use the Python modulo operator (%) for remainders, modular arithmetic, and more. Covers mod with ints, floats, and practical examples.

  4. Modulo - Wikipedia

    Modulo In computing and mathematics, the modulo operation returns the remainder or signed remainder of a division, after one number is divided by another, the latter being called the modulus of the …

  5. Modulo operator (%) in Python - GeeksforGeeks

    Dec 20, 2025 · The modulo operator (%) in Python is used to find the remainder after dividing one number by another. It works with both integers and floating-point numbers and is commonly used in …

  6. Modulo Operation - Math is Fun

    The modulo (or modulus or mod) is the remainder after dividing one number by another. Because 1009 = 11 with a remainder of 1.

  7. Modulo Calculator

    Aug 1, 2025 · Modulo calculator finds a mod b, the remainder when a is divided by b. The modulo operation returns the remainder in division of 2 positive or negative numbers or decimals.

  8. JavaScript Operators - W3Schools

    JavaScript Assignment Operators Assignment operators assign values to JavaScript variables. The Addition Assignment Operator (+=) adds a value to a variable.

  9. JavaScript Arithmetic - W3Schools

    Operators and Operands The numbers (in an arithmetic operation) are called operands. The operation (to be performed between the two operands) is defined by an operator.

  10. What is the Modulus Operator? A Short Guide with Practical Use Cases

    Jul 12, 2019 · The modulus operator - or more precisely, the modulo operation - is a way to determine the remainder of a division operation. Instead of returning the result of the division, the modulo …