answersLogoWhite

0


Best Answer

It is an binary arithmetic operator which returns the remainder of division operation. It can used in both floating-point values and integer values.

opLeft % opRight where, opLeft is the left operand and opRight is the right operand. This expression is equivalent to the expression opLeft - ((int) (opLeft / opRight) * opRight)

User Avatar

Wiki User

9y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

Can someone explain to me what the output is if I have system.out.print(9%12) written in java

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does the modulus operator in Java do?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does the percent mean in Java?

The percent sign in Java is the modulus operator. Modulus is used to find the remainder from a division For example if you did int x = 10 % 6; x would be equal to 4. 10 divided by 6 has a remainder of 4. The modulus operator can be used to determine whether a number is divisible by another among other things.


Explain the role of sizeof operator in java?

There is no sizeOf() operator in Java.


Which operator works like sizeof operator in Java?

Java does not have the sizeOf() operator or any operator that gives an equivalent result.


What is the function of the modulus operator in most languages?

Calculating the modulus of two numbers. Are you surprised now?


Operator overloading is possible in java or not?

Java does not support opperator overloading, so the answer to your question is: none.


The modulus operator can be used only with integer operands?

True


The modulus operator percent can be used only with integer operands?

True


What are the restriction that are applied to operator overloading?

Java does not support user defined operator overloading.The operator '+' is overloaded in Java and can be used for adding both numbers and Strings.


Which operator in 'c' takes only integer operands?

modulus (%) and shift (<<, >>) for examples.


What is operator in java?

An operator is a symbol that does something in Java. for ex: "+" is an arithmetic operator that adds two numbers. ">" is a logical operator that checks if one number is greater than the other. There are many different types of operators in Java like Arithmetic, Logical, Relational and Assignment operators


What is the difference between division and modulus operator?

Divison is a divison of two integers and result is stored in some where. where as Modulus is remainder is stored in some where. EX:DIVISION 45/4=11 MODULUS 45%4=1


What The modulus operator percent can be used only with integer operands is true or false?

true