What Will Be The Output Of The Following Java Codep Pre #596
What will be the output of the following Java code?</p> <pre><code class="language-java"> class StudentHashcode { static int num = 60; int temp; Student() { temp = num; } public int hashCode() { return temp; } public static void main(String args[]) { Student s = new Student(); System.out.println(s.hashCode()); System.out.println(s); } } </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) - Object Class - Quiz No.1.
What will be the output of the following Java code?
class StudentHashcode { static int num = 60; int temp; Student() { temp = num; } public int hashCode() { return temp; } public static void main(String args[]) { Student s = new Student(); System.out.println(s.hashCode()); System.out.println(s); } }
60 60
3c Student@3c
3c Student@60
60 Student@3c