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
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 |
What is the purpose of static methods and variables?
What is the difference between @before and @beforeclass annotation?
What Is Resource Leak?
Does a class inherit the constructors of its superclass in java programming?
What is difference between c++ and java ?
placement papaers of spring computing technology
0 Answers Spring Computing Technologies,
What are the advantages of encapsulation in java?
What is e in java?
Can size_t be negative?
What do you understand by synchronization?
What are the main concepts of oops in java?
What is thread priority?