What Is The Output Of The Following Java Codep Pre Langjava #486
What is the output of the following Java code?</p> <pre><code class="language-java"> class Time { int sec; void seconds(int m) { sec=m*60; System.out.println(sec); } public static void main(String[] args) { int min=60; Time obj=new Time(); obj.seconds(min); } } </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) - Member Functions - Quiz No.2.