Open In App

UGC-NET | UGC-NET CS 2017 Nov – III | Question 42

Like Article
Like
Save Article
Save
Share
Report issue
Report

What is the output of the following JAVA program ?




Class Test {
    public static void main(String[] args) {
        Test obj = new Test();
        obj.start();
    }
    void start() {
        String stra = ”do”;
            String strb = method(stra);
        System.out.print(“: ”+stra + strb);
    }
    String method(String stra) {
        stra = stra + ”good”;
        System.out.print(stra);
        return“ good”;
    }
}


(A) dogood : dogoodgood
(B) dogood : gooddogood
(C) dogood : dodogood
(D) dogood : dogood


Answer: (D)

Explanation:

Quiz of this Question


Last Updated : 20 Mar, 2018
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads