What is the java reflection api? Why it’s so important to have?
No Answer is Posted For this Question
Be the First to Post Answer
Why are strings immutable in Java?
Can we declare an interface as final?
What is Java Annotations?
what is method reference in java 8?
What are the observer and observable classes?
What is the significance of continue jump statement? Explain with an example.
Which are thin and thicK wrapper Class's in Java?
What is the use of set in java?
What is the main use of generics in java?
What do you understand by the term wrapper classes?
Write a program to show whether a graph is a tree or not using adjacency matrix.
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;