package sateesh; public class Demo { public void show() { System.out.println("hi"); } public void show(int x) { System.out.println("welcome"); } public void show(int x,int y) { System.out.println("java"); } }Note: Do not run the package Program
import sateesh.Demo; class Demo { public static void main(String args[]) { Demo d=new Demo(); d.show(); d.show(10); d.show(10,20); } }
hi
welcome
java