Java Interview Questions
- @bzlearnin
1. What are the differences between C++ and Java?
C++ is not platform-independent; the principle behind C++ programming is “write once,
compile anywhere.”
In contrast, because the byte code generated by the Java compiler is
platform-independent, it can run on any machine, Java programs are written once and
run everywhere.
· Languages Compatibility.
C++ is a programming language that is based on the C programming language. Most
other high-level languages are compatible with C++.
Most of the languages of Java are incompatible. Java is comparable to those of C and
C++.
· Interaction with the library.
It can access the native system libraries directly in C++. As a result, it’s better for
programming at the system level.
Java’s native libraries do not provide direct call support. You can use Java Native
Interface or access the libraries.
· Characteristics.
C++ distinguishes itself by having features that are similar to procedural and
object-oriented languages. The characteristic that sets Java apart is automatic garbage
collection. Java doesn’t support destructors at the moment.
· The semantics of the type.
Primitive and object types in C++ have the same kind of semantics. The primitive and
object and classes of Java, on the other hand, are not consistent.
· In the context of Compiler and Interpreter.
Java refers to a compiled and interpreted language. In contrast, C++ is only a compiled
language.
In Java, the source code is the compiled output is a platform-independent byte code.
In C++, the source program is compiled into an object code that is further executed to
produce an output.
2. List the features of the Java Programming language?
A few of the significant features of Java Programming Language are:
Easy: Java is a language that is considered easy to learn. One fundamental concept of
OOP Java has a catch to understand.
Secured Feature: Java has a secured feature that helps develop a virus-free and
tamper-free system for the users.
OOP: OOP stands for Object-Oriented Programming language. OOP signifies that, in
Java, everything is considered an object.
Independent Platform: Java is not compiled into a platform-specific machine; instead, it
is compiled into platform-independent bytecode. This code is interpreted by the Virtual
Machine on which the platform runs.
3. What do you get in the Java download file? How do they
differ from one another?
We get two major things along with the Java Download file.
JDK - Java Development Kit
JRE - Java Runtime Environment
JDK JRE
Abbreviation for JavaDevelopment Kit Abbreviation for Java Runtime
Environment
JDK is a dedicated kit for solely software JRE is a set of software and
development library designed for executing
Java Programs
Unlike JVM, JDK is Platform Dependent Unlike JVM, JRE is also Platform
Dependent
JDK package is a set of tools for debugging and JRE Package is one that only
Developing supports files and libraries for a
runtime environment
JDK package will be provided with an installer JRE Package does not get an
file installer but has only a runtime
environment
4. What is a ClassLoader?
A classloader in Java is a subsystem of Java Virtual Machine, dedicated to loading
class files when a program is executed; ClassLoader is the first to load the executable
file.
Java has Bootstrap, Extension, and Application classloaders.
Also Read: What is Bootstrap and How to Embed Bootstrap into Angular?
5. What are the Memory Allocations available in JavaJava?
Java has five significant types of memory allocations.
· Class Memory
· Heap Memory
· Stack Memory
· Program Counter-Memory
· Native Method Stack Memory
6. What are the differences between Heap and Stack
Memory in Java?
Stack memory in data structures is the amount of memory allocated to each individual
programme. It is a fixed memory space. Heap memory, in contrast, is the portion that
was not assigned to the Java code but will be available for use by the Java code when it
is required, which is generally during the program's runtime.
7. Will the program run if we write static public void main?
Yes, the program will successfully execute if written so. Because, in Java, there is no
specific rule for the order of specifiers
8. What is the default value stored in Local Variables?
Neither the Local Variables nor any primitives and Object references have any default
value stored in them.
9. Explain the expected output of the following code
segment?
public class Simplilearn
public static void main (String args[])
{
System.out.println(100 + 100 +“Simplilearn");
System.out.println(“E-Learning Company" + 100 + 100);
The answers for the two print statements are as follows.
· 200Simplilearn
· E-Learning Company100100
10. What is an Association?
An Association can be defined as a relationship that has no ownership over another. For
example, a person can be associated with multiple banks, and a bank can be related to
various people, but no one can own the other.
11. What do you mean by aggregation?
The term aggregation refers to the relationship between two classes best described as
a “whole/part” and “has-a” relationship. This kind is the most specialized version of an
association relationship. It contains the reference to another class and is said to have
ownership of that class.
12. Define Copy Constructor in Java
A Copy Constructor in Java is a constructor that initializes an object through another
object of the same class.
13. What is a Marker Interface?
An empty interface in Java is referred to as a Marker interface. Serializable and
Cloneable are some famous examples of Marker Interface.
14. What is Object Cloning?
An ability to recreate an object entirely similar to an existing object is known as Object
Cloning in Java. Java provides a clone() method to clone a current object offering the
same functionality as the original object.
15. Can Java be said to be the complete object-oriented
programming language
No, Java cannot be treated as a complete object-oriented programming language.
16. What is an object-oriented paradigm?
A Paradigm that is based on the concepts of “Objects.” It contains data and code. Data
that is in the form of fields, and regulation, that is in the form of procedures. The
exciting feature of this paradigm is that the object’s procedures can access and often
modify the data fields themselves.
17. Define Wrapper Classes in Java.
In Java, when you declare primitive datatypes, then Wrapper classes are responsible for
converting them into objects(Reference types).
18. What is a singleton class in Java? And How to
implement a singleton class?
A class that can possess only one object at a time is called a singleton class. To
implement a singleton class given steps are to be followed:
1. Make sure that the class has only one object
2. Give global access to that object
19. Define package in Java.
The package is a collective bundle of classes and interfaces and the necessary libraries
and JAR files. The use of packages helps in code reusability.
20. Can you implement pointers in a Java Program?
Java Virtual Machine takes care of memory management implicitly. Java's primary
motto was to keep programming simple. So, accessing memory directly through
pointers is not a recommended action. Hence, pointers are eliminated in Java.
21. Differentiate between instance and local variables.
For instance, variables are declared inside a class, and the scope of variables in
javascript is limited to only a specific object.
A local variable can be anywhere inside a method or a specific block of code. Also, the
scope is limited to the code segment where the variable is declared.
22. Explain Java String Pool.
A collection of strings in Java's Heap memory is referred to as Java String Pool. In case
you try to create a new string object, JVM first checks for the presence of the object in
the pool. If available, the same object reference is shared with the variable, else a new
object is created.
23. What is an Exception?
An Exception handling in Java is considered an unexpected event that can disrupt the
program's normal flow. These events can be fixed through the process of Exception
Handling.
24. What is the final keyword in Java?
The term final is a predefined word in Java that is used while declaring values to
variables. When a value is declared using the final keyword, then the variable's value
remains constant throughout the program's execution.
25. What happens when the main() isn't declared as
static?
When the main method is not declared as static, then the program may be compiled
correctly but ends up with a severe ambiguity and throws a run time error that reads
"NoSuchMethodError."
26. Why is Java a platform independent language?
One of the most well-known and widely used programming languages is Java. It is a
programming language that is independent of platforms. Java doesn't demand that the
complete programme be rewritten for every possible platform. The Java Virtual Machine
and Java Bytecode are used to support platform independence. Any JVM operating
system can run this platform-neutral byte code. The application is run after JVM
translates the byte code into machine code. Because Java programmes can operate on
numerous systems without having to be individually rewritten for each platform, the
language is referred to as "Write Once, Run Anywhere" (WORA).
27. Why is the main method static in Java?
Java's main() function is static by default, allowing the compiler to call it either before or
after creating a class object. The main () function is where the compiler begins
programme execution in every Java programme. Thus, the main () method needs to be
called by the compiler. If the main () method is permitted to be non-static, the JVM must
instantiate its class when calling the function.
28. What part of memory - Stack or Heap - is cleaned in
the garbage collection process?
On Heap memory, garbage collection is employed to release the memory used by
objects with no references. Every object created in the Heap space has access to the
entire application and may be referred to from anywhere.
29. What is the difference between the program and the
process?
A programme is a non-active entity that includes the collection of codes necessary to
carry out a specific operation. When a programme is run, an active instance of the
programme called a process is launched. A process is begun by a programme once it
has been run. The process carries out the program's specified instructions.
30. What are the differences between constructor and
method of a class in Java?
Initializing the state of the object is done by constructors. A function Object () { [native
code] }, like methods, contains a group of statements (or instructions) that are carried
out when an object is created. A method is a group of statements that work together to
complete a certain task and return the outcome to the caller. A method has the option
of working without returning anything.