Given: Which code, inserted at line 14, allows the Sprite class to compile?()
A.Direction d = NORTH; B.Nav.Direction d = NORTH; C.Direction d = Direction.NORTH; D.Nav.Direction d = Nav.Direction.NORTH;
Given: What is the result?()
A.hi hi B.hi world C.world world D.Compilation fails. E.An exception is thrown at runtime.
Given: Which two classes use the Shape class correctly?()
A.public class Circle implements Shape {private int radius;} B.public abstract class Circle extends Shape {private int radius;} C.public class Circle extends Shape {private int radius;public void draw();} D.public abstract class Circle implements Shape { private int radius;public void draw();} E.public class Circle extends Shape {private int radius;public void draw() {/* code here*/}}