Java is based on pass by reference or pass by value ..

Answers were Sorted based on User's Feedback



Java is based on pass by reference or pass by value ....

Answer / eyal roth

Pass by value.

Is This Answer Correct ?    15 Yes 4 No

Java is based on pass by reference or pass by value ....

Answer / venkatesh

Java supports both Pass By Value and Pass By Reference
Pass By Value: In Java method pass value , changed value is
visible within a method, it will not effect outside of the
method

Pass By Reference: Pass Java Object in method , changed
value will be available outside of method also.

Is This Answer Correct ?    9 Yes 5 No

Java is based on pass by reference or pass by value ....

Answer / arun

Java is actually pass-by-value for all variables running
within a single
VM. Pass-by-value means pass-by-variable-value. And that
means, pass-by-copy-of-
the-variable!

Is This Answer Correct ?    1 Yes 0 No

Java is based on pass by reference or pass by value ....

Answer / dheeraj pareek

Java is purely based on "Pass-by-value".
Variables are passed by value, and in case of Object, object reference is passed by value.

Is This Answer Correct ?    0 Yes 0 No

Java is based on pass by reference or pass by value ....

Answer / sanket mehta

Java does not support call by reference because in call by reference we need to pass the address and address are stored in pointers n java does not support pointers and it is because pointers breaks the security. Java is always pass-by-value. Pass by reference in java means the passing the address itself

Is This Answer Correct ?    0 Yes 0 No

Java is based on pass by reference or pass by value ....

Answer / guest

by reference.

Is This Answer Correct ?    3 Yes 13 No

Post New Answer

More Core Java Interview Questions

What is a singleton factory?

0 Answers  


When try and catch block is used ?

6 Answers  


What are register variables what are the advantages?

0 Answers  


Is java still relevant?

0 Answers  


Can you make a constructor final in Java?

0 Answers   SwanSoft Technologies,






Can this keyword be used to refer static members?

0 Answers  


What is difference between static variable and global variable?

0 Answers  


What are the properties of thread?

0 Answers  


What is the difference between a method and a function in alice?

0 Answers  


What are the major advantages of internal iteration over external iteration?

0 Answers  


Garbage collection in java?

0 Answers  


What's the default access specifier for variables and methods of a class?

0 Answers  


Categories