Computer Science, asked by shashwatprathmesh0, 5 months ago

solve this expression in terms of Java
double a=25.64;
a=a%10;
System.out.print(a)

what is the value of a​

Answers

Answered by techno25
0

Answer:

ans is 4

Explanation:

25.4 modulus 10 will give the remainder on dividing 25.4 by 10 so 4 will be the remainder

Similar questions