A

Admin • 828.03K Points
Coach

Q. What will be the output of the following Java program?
class dynamic_initialization
{
public static void main(String args[])
{
double a, b;
a = 3.0;
b = 4.0;
double c = Math.sqrt(a * a + b * b);
System.out.println(c);
}
}

  • (A) 5.0
  • (B) 25.0
  • (C) 7.0
  • (D) Compilation Error
  • Correct Answer - Option(A)
  • Views: 8
  • Filed under category Java
  • Hashtags:

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.