What Will Be The Output Of The Following Java Codep Pre #666
What will be the output of the following Java code?</p> <pre><code class="language-java"> class Outer { int y = 10; class Nested { int y = 15; } } class Prog { public static void main(String[] args) { Outer i = new Outer(); Outer.Nested j = i.new Nested(); System.out.println(i.y); System.out.println(j.y); } }</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs111 OOP Object Oriented Programming Java. It can also be found in gs gs111 Types of Classes (Using Java) - Nested Class - Quiz No.1.