+91-85006-22255
What will be the output of the following program?
public class FindName { public static void main(String[] args) { Test a = new Test(); Class myClass = a.getClass(); System.out.println("My class name is " + myClass.getName()); }}class Test {}
Topic: java.lang.class - Java Library
Read this topic Take test on this topic
Open In App