Which statement at Point X on line 1 allows this code to compile and run?()
A. import java.io.*.; B. include java.io.*; C. import java.io.PrintWriter; D. include java.io.PrintWRiter; E. No statement in needed.
What is the final value of i?()
A. 1 B. 2 C. 3 D. 4 E. 5
Which two are valid examples of method overriding?()
A. float getVar() {return x:} B. public float getVar() {return x; } C. public double getVar() {return x; } D. protected float getVar() {return x; } E. public float getVar(float f) {return f;}