125 Java Interview Questions
125 Java Interview Questions
What is a JVM?
JVM is Java Virtual Machine which is a run time environment for the compiled java class files.
Does the order of public and static declaration matter in main method?
No it doesn’t matter but void should always come before main().
Can a source file contain more than one Class declaration?
Yes a single source file can contain any number of Class declarations but only one of the class can be
declared as public.
What is a package?
Package is a collection of related classes and interfaces. package declaration should be first
statement in a java class.
Can you give few examples of final classes defined in Java API?
java.lang.String,java.lang.Math are final classes.