Interview Questions - Core Java

5.
What is the difference between a JDK and a JVM?
JDK is Java Development Kit which is for development purpose and it includes execution environment also. But JVM is purely a run time environment and hence you will not be able to compile your source files using a JVM.

6.
What is a pointer and does Java support pointers?
Pointer is a reference handle to a memory location. Improper handling of pointers leads to memory leaks and reliability issues hence Java doesn't support the usage of pointers.

7.
What is the base class of all classes?
java.lang.Object

8.
Does Java support multiple inheritance?
Java doesn't support multiple inheritance.