which pattern is default in scanner package?
No Answer is Posted For this Question
Be the First to Post Answer
Define packages in java?
How do you declare an array that will hold more than 64KB of data?
What is difference overloading and overriding?
What is this keyword in java?
Can static methods be inherited?
What are alternatives to java serialization?
what is singleton class in java?
Which Java operator is right associative?
What is unicode full form?
INTERVIEW QUESTION FOR ANDROID
What are constants and how to create constants in java?
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;