Hi!
I put this small code here..!,I want to know,why always taking int argument passed method 1ly its taking?....
how do i improve my java coding level,when i attending written test for an interview,i am failed 1st round itself......
class staticTest1 { public static void test(double c){ System.out.println("Double"); } public static void test(int b){ System.out.println("Int"); } public static void test(short b){ System.out.println("short"); } public static void main(String[] args) { test(102420000000); } }