10. class Nav{
11. public enum Direction { NORTH, SOUTH, EAST, WEST }
12. }
13. public class Sprite{
14. // insert code here
15. }
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;

Answers were Sorted based on User's Feedback



10. class Nav{ 11. public enum Direction { NORTH, SOUTH, EAST, WEST } 12. } 13. public class Spri..

Answer / neil

Nav.Direction d = Nav.Direction.NORTH;

Is This Answer Correct ?    33 Yes 1 No

10. class Nav{ 11. public enum Direction { NORTH, SOUTH, EAST, WEST } 12. } 13. public class Spri..

Answer / manikandan [ gtec,vellore ]

Answer is d)Nav.Direction d = Nav.Direction.NORTH;

explanation:

enum is specified inside a class Nav and that can b called
from other class that so v use the reference of the class
Nav.it's jus shows Encapsulation concept

Is This Answer Correct ?    8 Yes 3 No

Post New Answer

More Core Java Interview Questions

What is the difference between the Reader/Writer class hierarchy and the InputStream/OutputStream class hierarchy?

0 Answers  


what is heap memory?

0 Answers   Tavant Technologies, Zensar,


what is platform dependent translation and platform dependent programming language

2 Answers  


Difference between current previous versions of Java?

0 Answers   Atos Origin,


What is stack explain?

0 Answers  






What are locale settings?

0 Answers  


Write a java program to check if a number is prime or not?

0 Answers  


What do you mean by buffering?

0 Answers  


What occurs when an object is constructed?

0 Answers  


What is hypertext?

1 Answers  


What are keywords give examples?

0 Answers  


Differentiate between array list and vector in java.

0 Answers  


Categories