Question Info

This question is public and is used in 6 tests.

Type: Open-Ended
Category: Programming
Grade: None
Score: 1
Author: BacMan orange star
Last Modified: 2 weeks ago

View all questions by BacMan.

View Question

View this question.

Add this question to a group or test by clicking the appropriate button below.

add this question to a test add this question to a group

1 vote
  • Are objects passed by value or by reference or both? Explain.
    • Java only supports pass by value. With objects, the object reference itself is passed by value and so both the original reference and parameter copy both refer to the same object.