Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Java | Functions | Question 2

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article




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

My Personal Notes arrow_drop_up
Last Updated : 28 Jun, 2021
Like Article
Save Article
Similar Reads