What will be the output of the following program?
public class DemoOnClasses {
public static void main(String[] args) {
DemoOnClasses object = new DemoOnClasses();
String value = object.__();
System.out.print(value);
}
String __() {
return "meritCampus";
}
}