PDA

View Full Version : What is the modulus operator?



Shivangi Panwar
05-17-2016, 04:29 AM
What is the modulus operator?

priya01
05-19-2016, 02:44 AM
The modulus operator outputs the remainder of a division. It makes use of the percentage (%) symbol. For example: 10 % 3 = 1, meaning when you divide 10 by 3, the remainder is 1.

Thoughtgrid
09-17-2016, 12:29 AM
These type of operator divide the value of one expression by value of another and return the reminder it is commonly used to take randomly generated number reduce that number to a random number on small range.

jeffronald19
12-28-2016, 09:50 PM
In computing, the modulo operation finds the remainder after division of one number by another (sometimes called modulus). Given two positive numbers, a (the dividend) and n (the divisor), a modulo n (abbreviated as a mod n) is the remainder of the Euclidean division of a by n.

pxljobs
01-30-2017, 11:09 PM
The modulus operator reminder of the division it give an absolute value of positive or negative value of the number.

tyagi
03-30-2017, 12:00 AM
In computing, the modulo operation finds the remainder after division of one number by another (sometimes called modulus). Given two positive numbers, a (the dividend) and n (the divisor), a modulo n (abbreviated as a mod n) is the remainder of the Euclidean division of a by n.

Thank you~!

damponting44
11-24-2017, 03:01 AM
Java has one essential arithmetical administrator you may not be acquainted with, % , otherwise called the modulus or leftover portion administrator. The % administrator restores the rest of two numbers. For example 10 % 3 is 1 since 10 separated by 3 leaves a rest of 1.

damponting44
11-24-2017, 03:07 AM
Java has one essential arithmetical administrator you may not be acquainted with, % , otherwise called the modulus or leftover portion administrator. The % administrator restores the rest of two numbers. For example 10 % 3 is 1 since 10 separated by 3 leaves a rest of 1.

johnnymorgan
11-30-2017, 11:14 PM
These type of owner split the value of one appearance by value of another and come back the indication it is widely used to take arbitrarily produced variety decrease time to a unique variety on small range.

swikriti.sharma
01-12-2018, 04:56 AM
the modulus operator ('%'), that computes the remainder that results from performing integer division.It's generally used to check if one number is evenly divisible by another.

jackar56
02-14-2018, 01:42 AM
Modulus operator basically used to find a remainder when one number is divided by the other number.

for eg:-(5%2), gives the remainder 1.

4%2, gives the remainder 0.

damponting44
02-14-2018, 03:18 AM
Supported in the following document modes: Quirks, Internet Explorer 6 standards, Internet Explorer 7 standards, Internet Explorer 8 standards, Internet Explorer 9 standards, Internet Explorer 10 standards, Internet Explorer 11 standards.

hariandro001
09-21-2018, 09:21 PM
Modulo operation( % ). The Modulus is the remains of the Euclidean division of one number by another.

krishbenn
11-16-2018, 12:54 AM
What is the modulus operator?

In Java, Modulus operator is an important operator that returns the remainder of two numbers.

krishbenn
11-16-2018, 12:56 AM
What is the modulus operator?

In Java, Modulus operator is an important operator that returns the remainder of two numbers.