Which is illegal identifier in java?
No Answer is Posted For this Question
Be the First to Post Answer
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;
How to define a constant variable in Java?
What are the files generated after using IDL to java compiler?
What is the difference between hashset and treeset in java?
Explain notifyall() method of object class ?
What happens to a static var that is defined within a method of a class?
What is meant by final class, methods and variables?
Is char a data type in java?
What is a flag value?
Differences between external iteration and internal iteration?
What does flagged out mean?
What is the difference between the direct buffer and non-direct buffer in java?