Why pass by reference is not possible in java?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

What are blocks?.

1 Answers   TCS,


What is stack example?

0 Answers  


Is it possible to cast an int value into a byte variable? What would happen if the value of int is larger than byte?

0 Answers  


class A { private int i; } class B extends A { private int i; } if I create an object of B class what will be the memory of that object.

2 Answers   Yamaha,


what is AWT

3 Answers  


What is the difference between char and char *?

0 Answers  


Why java is a platform independent? Explain

0 Answers  


What is java virtual machine? Explain

0 Answers  


What occurs when an object is constructed?

0 Answers  


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;

2 Answers  


Can you use this() and super() both in a constructor?

0 Answers  


What does regex mean?

0 Answers  


Categories