Home » JAVA Programming » Data Structures » Question
  1. When an array is passed to a method, will the content of the array undergo changes with the actions carried within the function?
    1. True
    2. False
    3. Only A
    4. A and B both
    5. None of these
Correct Option: C

If we make a copy of array before any changes to the array the content will not change. Else the content of the array will undergo changes.



Your comments will be displayed only after manual approval.