What Will Be The Output Of The Following Java Codep Pre #597
What will be the output of the following Java code?</p> <pre><code class="language-java"> class boolEqual { public static void main(String[] args) { Boolean obj1 = new Boolean(true); Boolean obj2 = new Boolean(false); System.out.println(obj1.equals(obj2)); } } </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.