What Is The Output Of The Following Java Codep Pre Langjava #532
What is the output of the following Java code?</p> <pre><code class="language-java"> class Triangle extends Square { Triangle(int b,int h) { double area=(b*h)/2; System.out.println(area); } public static void main(String args[]) { Square obj=new Square(5); } } class Square { Square(int l) { System.out.println(l*l); } }</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 Class Components (Using Java) - Constructor Overloading - Quiz No.2.