what is singleton in java?
No Answer is Posted For this Question
Be the First to Post Answer
Describe what happens when an object is created in java ?
What are examples of modifiers?
How many bytes are there?
Iterator in the HashMap is fail-safe means what?
In which language java is written?
How to implement a multithreaded applet?
how to handle exceptions in ejb?
What is java in detail?
What is the difference between a method and a function in alice?
Can you explain the final method modifier?
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;
Can we restart a dead thread in java?