Is java type safe?
No Answer is Posted For this Question
Be the First to Post Answer
What is a condition in java?
What is abstract class? Explain
What is final keyword in java? Give an example.
Explain the concept of polymorphism with examples?
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 many methods does cloneable interface contains?
Can a static member function access member variable of an object?
What is are packages?
Can you explain the private protected field modifier?
What does void * mean?
what is ststic with example
What will happen when using pass by reference in java?