Studntz

"For the Students By the Student" Send your Contribution to studntzblog@gmail.com You can send any kind of information which is used for students....

Saturday, March 6, 2010

Interview Questions on Java

1.What if the main method is declared as private?
The program compiles properly but at runtime it will give “Main method not public.” message.
2.What is meant by pass by reference and pass by value in Java?
Pass by reference means, passing the address itself rather than passing the value. Pass by value means passing a copy of the value.
3.If you’re overriding the method equals () of an object, which other method you might also consider?
hash Code()
4.What is Byte Code?
Or
4.What gives java it’s “write once and run anywhere” nature?
All Java programs are compiled into class files that contain bytecodes. These byte codes can be run in any platform and hence java is said to be platform independent.
Expain the reason for each keyword of public static void main(String args[])?
public- main(..) is the first method called by java environment when a program is executed so it has to accessible from java environment. Hence the access specifier has to be public.
static: Java environment should be able to call this method without creating an instance of the class , so this method must be declared as static.
void: main does not return anything so the return type must be void
The argument String indicates the argument type which is given at the command line and arg is an array for string given during command line.

No comments:

Post a Comment

Send your Feed back to studntzblog@gmail.com