What will be the output of the following program?
class College {
public static void main(String s[]) {
Student mahesh = new Student();
System.out.println("Name = " + mahesh.name);
System.out.println("Marks = " + mahesh.marks);
System.out.println("Section = " + mahesh.section);
}
}
class Student {
String name = "Mahesh";
int marks = 68;
char section = 'B';
}