What Will Be The Output Of The Following Java Codep Pre #886
What will be the output of the following Java code?</p> <pre><code class="language-java"> class Calc1 { public int disp() { return 10; } public long disp(int a) { return 11; } public static void main(String[] args) { Calc obj = new Calc(); System.out.println(obj.disp(11)); } } </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 Polymorphism (Using Java) - Method Overloading - Quiz No.1.