Multiple Choice
Consider the following program. public class CircleArea
{
Static Scanner console = new Scanner(System.in) ; static final float PI = 3.14; public static void main(String[]args)
{
Float r;
Float area;
R = console.nextDouble() ;
Area = PI * r * r;
System.out.println( " Area = " + area) ;
}
} To successfully compile this program, which of the following import statement is required?
A) import java.io;
B) import java.util;
C) import java.lang;
D) No import statement is required
Correct Answer:

Verified
Correct Answer:
Verified
Q15: Java automatically initializes all variables.
Q25: If a = 4; and b =
Q26: _ are executable statements that inform the
Q28: Suppose x = 4 and y =
Q29: Consider the following program. // Insertion Point
Q30: The standard output object in Java is
Q31: The value of the expression 5 +
Q37: The symbol '5' does not belong to
Q44: The Java language is strongly typed.
Q48: What type of Java statement(s) stores a