Explain hashset and its features?
No Answer is Posted For this Question
Be the First to Post Answer
Why 1 is not a prime number?
Write a program to reverse array in place?
Why a dead thread occurs?
If an object is garbage collected, can it become reachable again?
Why null interfaces are used in Java?
What is string in java with example?
What are the three best choices for a development environment?
What is bifunction in java?
what is meant by abstract class?
In the HashMap, we know the values but we dont know the key, then how can we get the key from HashMap ?????
How do you convert an int to a double 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;