What will be the output of the following program?
public class Extension {
static void helloLong(long... x) {
System.out.println("This is Long");
}
static void helloInteger(Integer... x) {
System.out.println("This is Integer");
}
static void helloString(String... str) {
System.out.println("This is " + str[0]);
}
public static void main(String[] args) {
int mC = 5;
helloLong(mC, mC);
helloInteger(mC, mC);
helloString("String");
}
}