जॉइन Examsbook
1693 0

प्र: what will be the output of the following code? class Value { public int i = 15; } public class Test { public static void main(String argv[]) { Test t = new Test(); t.first(); } public void first() { int i = 5; Value v = new Value(); v.i = 25; second(v, i); System.out.println(v.i); } public void second(Value v, int i) { i = 0; v.i = 20; Value val = new Value(); v = val; System.out.println(v.i + " " + i); } }

  • 1
    15 0 2
  • 2
    15 0 0
  • 3
    15 20 0
  • 4
    15 0 20
  • उत्तर देखेंउत्तर छिपाएं
  • Workspace

उत्तर : 4. "15 0 20"
व्याख्या :

Answer: D) 15 0 20 Explanation:

क्या आपको यकीन है

  त्रुटि की रिपोर्ट करें

कृपया संदेश दर्ज करें
त्रुटि रिपोर्ट सफलतापूर्वक जमा हुई