Home Interview Questions and Answers Core Java Interview Questions and Answers For Freshers and Experience Part-2

core-java7. What is the base class of all classes?

java.lang.Object

8. Does Java support multiple inheritance?

Java doesn’t support multiple inheritance.

9. Is Java a pure object oriented language?

Java uses primitive data types and hence is not a pure object oriented language.

10. Are arrays primitive data types?

In Java, Arrays are objects.

11. What is difference between Path and Classpath?

Path and Classpath are operating system level environment variales. Path is used define where the system can find the executables(.exe) files and classpath is used to specify the location .class files.

12. What are local variables?

Local varaiables are those which are declared within a block of code like methods. Local variables should be initialised before accessing them.

You may also like

Leave a Comment