Vidyalelo
Java Programming · Q200

Interfaces and Abstract Classes

Programming · Java Programming · question 200

Q200

What will be the output of the following Java program? class Output public static void main(String args[]) double x = 102; double y = 5; double z = Math.IEEEremainder(x, y); System.out.print(z);

A.
0
B.
1
C.
2
Answer
D.
3

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board