What is the return type of the main method?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

Where are local variables stored?

0 Answers  


what is the difference between sleep() and Wait()?

10 Answers   Accenture, Amdocs,


Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }

3 Answers  


what is polymorphism?

4 Answers  


Explain java coding standards for classes or java coding conventions for classes?

0 Answers  


How do you reverse a string in java?

0 Answers  


How many ways can you break a singleton class in java?

0 Answers  


what is method reference in java 8?

0 Answers  


When is an object subject to garbage collection?

0 Answers  


How many types of packages are there in Java?

5 Answers  


What is the function of compareto in java?

0 Answers  


what is the difference between thread and runnable types? : Java thread

0 Answers  


Categories