Home /
Expert Answers /
Computer Science /
java-help-please-the-value-in-this-type-of-variable-persists-between-method-calls-global-dynamic-st-pa122
(Solved): java help please The value in this type of variable persists between method calls. global dynamic st ...
java help please
The value in this type of variable persists between method calls. global dynamic static internal
What is the output of the following code? final static double pi =3.14 : public static double circleArea(double r) return pi*r*r: (i) public static void main(Stringl] args) \{ double pi =3.0 System.out.printin(circleArea(1.0)); 3 3.14 None of the answers are correct 3 3.0