Discussion :: JAVA MCQs
-
What is the output of this program?class Modulus {public static void main(String args[]){double a = 25.64;int b = 25;a = a % 10;b = b % 10;System.out.println(a + " " + b);}}
Answer : Option A
Explanation :
Modulus operator returns the remainder of a division operation on the operand. a = a % 10 returns 25.64 % 10 i:e 5.640000000000001. Similarly b = b % 10 returns 5.
Be The First To Comment