What will be the output of the following program?
public class Student {
int rollno;
String name;
static String college = "RITA";
static void chage() {
college = "SRIT";
}
Student(int r, String n) {
rollno = r;
name = n;
}
void display() {
System.out.println(rollno + " " + name + " " + college);
}
public static void main(String arts[]) {
Student.chage();
Student s1 = new Student(516, "Kiran");
Student s2 = new Student(560, "Vishwanath");
Student s3 = new Student(517, "Kranthi");
s1.display();
s3.display();
s2.display();
}
}