1) What Is Java?
1) What Is Java?
o Secured: Java is secured because it doesn't use explicit pointers. Java also provides
the concept of ByteCode and Exception handling which makes it more secured.
o Multithreaded: We can write Java programs that deal with many tasks at once by
defining multiple threads. The main advantage of multi-threading is that it doesn't
occupy memory for each thread. It shares a common memory area. Threads are
important for multi-media, Web applications, etc.
JVMs are available for many hardware and software platforms (so JVM is platform
dependent). It is a runtime instance which is created when we run the Java class. There are
three notions of the JVM: specification, implementation, and instance.
JRE
JRE stands for Java Runtime Environment. It is the implementation of JVM. The Java
Runtime Environment is a set of software tools which are used for developing Java
applications. It is used to provide the runtime environment. It is the implementation of JVM.
It physically exists. It contains a set of libraries + other files that JVM uses at runtime.
JDK
JDK is an acronym for Java Development Kit. It is a software development environment
which is used to develop Java applications and applets. It physically exists. It contains JRE +
development tools. JDK is an implementation of any one of the below given Java Platforms
released by Oracle Corporation:
1. Class(Method) Area: Class Area stores per-class structures such as the runtime
constant pool, field, method data, and the code for methods.
2. Heap: It is the runtime data area in which the memory is allocated to the objects
3. Stack: Java Stack stores frames. It holds local variables and partial results, and plays
a part in method invocation and return. Each thread has a private JVM stack, created
at the same time as the thread. A new frame is created each time a method is invoked.
A frame is destroyed when its method invocation completes.
4. Program Counter Register: PC (program counter) register contains the address of
the Java virtual machine instruction currently being executed.
5. Native Method Stack: It contains all the native methods used in the application.
o Java is the software-based platform whereas other platforms may be the hardware
platforms or software-based platforms.
o Java is executed on the top of other hardware platforms whereas other platforms can
only have the hardware components.
o Public The classes, methods, or variables which are defined as public, can be
accessed by any class or method.
o Protected Protected can be accessed by the class of the same package, or by the sub-
class of this class, or within the same class.
o Default Default are accessible within the package only. By default, all the classes,
methods, and variables are of default scope.
o Private The private class, methods, or variables defined as private can be accessed
within the class only.
For example, In the class simulating the collection of the students in a college, the name of
the college is the common attribute to all the students. Therefore, the college name will be
defined as static.
o Object-oriented languages follow all the concepts of OOPs whereas, the object-based
language doesn't follow all the concepts of OOPs like inheritance and polymorphism.
o Object-oriented languages do not have the inbuilt objects whereas Object-based
languages have the inbuilt objects, for example, JavaScript has window object.
o Examples of object-oriented programming are Java, C#, Smalltalk, etc. whereas the
examples of object-based languages are JavaScript, VBScript, etc.
o Default Constructor: default constructor is the one which does not accept any value.
The default constructor is mainly used to initialize the instance variable with the
default values. It can also be used for performing some useful task on object creation.
A default constructor is invoked implicitly by the compiler if there is no constructor
defined in the class.
o Parameterized Constructor: The parameterized constructor is the one which can
initialize the instance variables with the given values. In other words, we can say that
the constructors which can accept the arguments are called parameterized
constructors.
There are many ways to copy the values of one object into another in java. They are:
o By constructor
o By assigning the values of one object into another
o By clone() method of Object class
30) What are the differences between the constructors and meth
There are many differences between constructors and methods. They are given below.
A constructor must not have a return A method must have a return type.
type.
The Java compiler provides a default The method is not provided by the compiler
constructor if you don't have any in any case.
constructor in a class.
The constructor name must be same as The method name may or may not be same as
the class name. class name.
o Single-level inheritance
o Multi-level inheritance
o Multiple Inheritance
o Hierarchical Inheritance
o Hybrid Inheritance
o The method must have the same name as in the parent class.
o The method must have the same signature as in the parent class.
o Two classes must have an IS-A relationship between them.
1) Method overloading increases Method overriding provides the specific implementation of the method that is
the readability of the program. already provided by its superclass.
2) Method overloading occurs Method overriding occurs in two classes that have IS-A relationship between
within the class. them.
3) In this case, the parameters In this case, the parameters must be the same.
must be different.