What will be the output of the following program? class Testing { public static void main(String ar[]) { Testing t = new Testing(); t.show(1); } void show(byte b) {System.out.println("Byte");} void show(short s) {System.out.println("Short");} void show(int i) {System.out.println("Int");} void show(long l) {System.out.println("Long");} } (a) What will be the output when we remove the void show(int i) {System.out.println("Int");} from the class. (b) What will be the output when we remove last two methods from the class? Explain the output.