What Will Be The Output Of The Following Java Codep Pre #190
What will be the output of the following Java code?</p> <pre><code class="language-java" line="1"> class area { int width; int length; int area; void area(int width, int length) { this.width = width; this.length = length; } } class Output { public static void main(String args[]) { area obj = new area(); obj.area(5 , 6); System.out.println(obj.length + " " + obj.width); } }</code></pre>
This multiple choice question (MCQ) is related to the book/course
gs gs128 Java.
It can also be found in
gs gs128 Java Classes Methods - Constructor & Garbage Collection in Java - Quiz No.1.