What is the Difference between JDK and JRE?
Ans : The “JDK” is the Java Development Kit i.e., the JDK is bundle of software that you can use to develop Java based software.
The “JRE” is the Java Runtime Environment i.e., the JRE is an implementation of the Java Virtual Machine which actually executes Java programs.
Typically, each JDK contains one (or more) JRE’s along with the various development tools like the Java source compilers, bundling and deployment tools, debuggers, development libraries, etc.
Describe what happens when an object is created in
Java?
Several things happen in a particular order to
ensure the object is constructed properly:
1. Memory is allocated from heap to hold all instance variables and
implementation-specific data of the object and its super classes.
Implementation-specific data includes pointers to class and method data.
2. The instance variables of the objects are initialized to their default
values.
3. The constructor for the most derived class is invoked. The first thing a
constructor does is call the constructor for its uppercase. This process
continues until the constructor for java.lang.Object is called, as java.lang.Object
is the base class for all objects in java.
4. Before the body of the constructor is executed, all instance variable
initializers and initialization blocks are executed. Then the body of the
constructor is executed. Thus, the constructor for the base class completes
first and constructor for the most derived class completes last.
In Java, you can create a String object as below : String
str = "abc"; & String str = new String("abc"); Why cant
a button object be created as : Button bt = "abc"? Why is it
compulsory to create a button object as: Button bt = new
Button("abc"); Why this is not compulsory in String’s case?
Button bt1= "abc"; It is because "abc"
is a literal string (something slightly different than a String object,
by-the-way) and bt1 is a Button object. That simple. The only object in Java
that can be assigned a literal String is java.lang.String. Important to not
that you are NOT calling a java.lang.String constuctor when you type String s =
"abc"; For example String x = "abc"; String y = "abc";
refer to the same object. While String x1 = new String("abc");
String x2 = new String("abc"); refer to two different objects.
What is the advantage of OOP?
You will get varying answers to this question
depending on whom you ask. Major advantages of OOP are:
1. Simplicity: software objects model real world objects, so the complexity is
reduced and the program structure is very clear;
2. Modularity: each object forms a separate entity whose internal workings are
decoupled from other parts of the system;
3. Modifiability: it is easy to make minor changes in the data representation
or the procedures in an OO program. Changes inside a class do not affect any
other part of a program, since the only public interface that the external
world has to a class is through the use of methods;
4. Extensibility: adding new features or responding to changing operating environments
can be solved by introducing a few new objects and modifying some existing
ones;
5. Maintainability: objects can be maintained separately, making locating and
fixing problems easier;
6. Re-usability: objects can be reused in different programs.