1.

What is the output of this program?
public class Result 
{
public static void main(String args[])
{
double num0 = 205;
double num1 = 2;
double num2 = Math.IEEEremainder(num0, num1);
System.out.print(num2);

}
}

A. 250
B. 2
C. 11
D. 1.0
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs