what is the output of the following program?
public class abc1{
public static void sample(int BIET, int GMIT, int UBDT){
System.out.println("Trainee");
}
public static void sample(byte...VTU){
System.out.println("Engineer");
}
public static void main(String... args) {
byte VTU = 10;
sample(VTU,VTU,VTU);
}
}



Posted on by