What will be the output of the following program?
public class KIs {
public static void main(String args[]) {
int k = 65;
switch (k) {
default :
System.out.print("Website");
case 65 :
System.out.print("Merit");
case 'k' :
System.out.print("Campus");
case 'j' :
System.out.print("Java");
break;
}
}
}