Can a class be private?
No Answer is Posted For this Question
Be the First to Post Answer
difference between byte stream class and character stream class?
I want my class to be developed in such a way that no other class (even derived class) can create its objects. Define how can I do so?
which one is performance wise advantageious from List,Set,Map?
How do you reverse a word in java?
What is nan inf?
Which java ide is used the most?
When a byte datatype is used?
Can size_t be negative?
How many bytes is string in java?
What is a data structure java?
Can we have try block without catch block?
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;