Solved

Consider the Following Program

Question 3

Multiple Choice

Consider the following program. // Insertion Point 1 public class CircleArea {// Insertion Point 2 static final float PI = 3.14 public static void main(String[]args) {//Insertion Point 3 float r = 2.0; float area; area = PI * r * r; System.out.println("Area = " + area) ;} // Insertion Point 4} In the above code, where do the import statements belong?


A) Insertion Point 1
B) Insertion Point 2
C) Insertion Point 3
D) Insertion Point 4

Correct Answer:

verifed

Verified

Related Questions