Open In App

Java | Functions | Question 2

Like Article
Like
Save
Share
Report




public class Main { 
    public static void main(String args[]) { 
       String x = null; 
       giveMeAString(x); 
       System.out.println(x); 
    
    static void giveMeAString(String y) 
    
       y = "GeeksQuiz"
    
}


(A) GeeksQuiz
(B) null
(C) Compiler Error
(D) Exception


Answer: (B)

Explanation: Parameters in Java is passed by value. So the changes made to y do not reflect in main().

Quiz of this Question


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads