What Will Be The Output Of The Following Java Codep Pre #603
What will be the output of the following Java code?</p> <pre><code class="language-java"> public class JavaClassExample { public static void main(String[] args) { Object obj1 = new String("Apple"); Class b = obj1.getClass(); System.out.println("Class is:" + b.getName()); } } </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?
public class JavaClassExample { public static void main(String[] args) { Object obj1 = new String("Apple"); Class b = obj1.getClass(); System.out.println("Class is:" + b.getName()); } }
Class is Apple
Class is JavaClassExample
Class is java.lang.String
Class is String