Java Interview Questions icon

Java Interview Questions

★★★★★
★★★★★
(0.00/5)

1.0Free6 years ago

Download Java Interview Questions APK latest version Free for Android

Version 1.0
Update
Size 3.33 MB (3,496,246 bytes)
Developer Kongu Boopathi Kumar Kumarasamy Gounder
Category Apps, Education
Package Name w3apps.apps.konguapps.learnjavainterview
OS 4.0.3 and up

Java Interview Questions APPLICATION description

JAVA INTERVIEW QUESTIONS

1. What is JVM ?
Why is Java called the “Platform Independent Programming Language” ? A Java virtual machine (JVM) is a process virtual machine that can execute Java bytecode. Each Java source file is compiled into a bytecode file, which is executed by the JVM. Java was designed to allow application programs to be built that could be run on any platform, without having to be rewritten or recompiled by the programmer for each separate platform. A Java virtual machine makes this possible, because it is aware of the specific instruction lengths and other particularities of the underlying hardware platform.

2. What is the Difference between JDK and JRE ?
The Java Runtime Environment (JRE) is basically the Java Virtual Machine (JVM) where your Java programs are being executed. It also includes browser plugins for applet execution. The Java Development Kit (JDK) is the full featured Software Development Kit for Java, including the JRE, the compilers and tools (like JavaDoc, and Java Debugger), in order for a user to develop, compile and execute Java applications.

3. What does the “static” keyword mean ?
Can you override private or static method in Java ? The static keyword denotes that a member variable or method can be accessed, without requiring an instantiation of the class to which it belongs. A user cannot override static methods in Java, because method overriding is based upon dynamic binding at runtime and static methods are statically binded at compile time. A static method is not associated with any instance of a class so the concept is not applicable.

4. Can you access non static variable in static context ?
A static variable in Java belongs to its class and its value remains the same for all its instances. A static variable is initialized when the class is loaded by the JVM. If your code tries to access a non-static variable, without any instance, the compiler will complain, because those variables are not created yet and they are not associated with any instance

5. What is Function Overriding and Overloading in Java ?
Method overloading in Java occurs when two or more methods in the same class have the exact same name, but different parameters. On the other hand, method overriding is defined as the case when a child class redefines the same method as a parent class. Overridden methods must have the same name, argument list, and return type. The overriding method may not limit the access of the method it overrides.
↓ Read more
Java Interview Questions screen 1 Java Interview Questions screen 2 Java Interview Questions screen 3 Java Interview Questions screen 4