A
Q. What will be the output of the following Java code?
class area {
public static void main(String args[])
{
double r, pi, a;
r = 9.8;
pi = 3.14;
a = pi * r * r;
System.out.println(a);
}
}
- Correct Answer - Option(A)
- Views: 30
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.