Java Basic Questions
Java Basic Questions
Java Fundamentals
2 Marks
1. What are the features of java? [Remembering]
1. Simple
2. Object-Oriented
3. Portable
4. Platform independent
5. Secured
6. Robust
7. Architecture neutral
8. Interpreted
9. High Performance
10. Multithreaded
11. Distributed
12. Dynamic
2. Difference between JDK, JRE, and JVM. [Analyzing]
JDK is abbreviated as Java Development Kit which has a physical existence. It can be
considered as a kit inside which resides the JRE along with developing tools within it. The
programmers and developers mostly use it.
JVM is abbreviated as Java Virtual Machine, is basically a dummy machine or you can say an
abstract machine which gives Java programmers a runtime environment for executing the
Bytecode.
For each execution of your program, the JDK and JRE come into use, and they go within the
JVM to run the Java source code.
JRE is abbreviated as Java Runtime Environment, as the name suggests used as a package that
gives an environment to run the Java program on your machine
3. What is bytecode? [Remembering]
Bytecode is a highly optimized set of instructions designed to be executed by the java run-time
system. Which is called the java virtual machine (JVM). JVM is an interpreter for bytecode.
4. What is a variable? What are the different types of variables? [Remembering]
Variable are locations in the memory that can hold values. Java has three kinds of variable
namely, Instance variable
Local variable
Class variable
Local variables are used inside blocks as counts or in methods as temporary variables. Once
the block or the method is executed, the variable ceases to exist. Instance variable are used to
define attributes or the state of a particular object. These are used to store information needed
by multiple methods in the objects.
5. What are the difference between static variable and instance variable? [Analyzing]
The data or variables, defined within a class are called instance variables.
Instance variables declared as static are, essentially, global variables. When objects of its class
are declared, no copy of a static variable is made.
6.What are primitive datatypes in java? [Remembering]
There are 8 types of primitive data types:
1. boolean data type
2. byte data type
3. char data type
4. short data type
5. int data type
6. long data type
7. float data type
8. double data type
7. Define Array? How to declare an array? [Remembering]
Java array is an object which contains elements of a similar data type. It is a data structure
where we store similar elements. We can store only a fixed set of elements in a Java array.
There are two types of array.
1. Single Dimensional Array
2. Multidimensional Array
int a[]=new int[5];//declaration
8. List out the operator in Java. [Creating]
1. Arithmetic Operators
2. Increment and Decrement Operators
3. Bitewise Operators
4. Relational Operators
5. Logical Operators
6. Assignment Operators
9.what is object? [Creating]
An object is an instance of a class. A class is a template or blueprint from which objects are
created. So, an object is the instance(result) of a class.
1. An object is a real-world entity.
2. An object is a runtime entity.
3. The object is an entity which has state and behavior.
4. The object is an instance of a class.
10.Define Construcor? [Remembering]
Constructor in java is a special type of method that is used to initialize the object. Java
constructor is invoked at the time of object creation. It constructs the values i.e. provides data
for the object that is why it is known as constructor.
11. What are the Types of java constructors? [Understanding]
There are two types of constructors: 1. Default constructor (no-arg constructor) 2.
Parameterized constructor
12.What is meant by garbage collection? [Remembering]
It frees memory allocated to objects that are not being used by the program any more - hence
the name "garbage".In certain languages like C++, dynamically allocated objects must be
manually released by use of a delete operator. In Java deallocation happens automatically. The
technique that accomplishes this is called garbage collection.
13.Define method? [Creating]
Methods are functions that operates on instances of classes in which they are defined. Objects
can communicate with each other using methods and can call methods in other classes. Just as
there are class and instance variable, there are class and instance methods. Instance methods
apply and operate on an instance of the class while class methods operate on the class.
14. What is the use of ‘this’ Keyword? [Analyzing]
1. this can be used to refer current class instance variable.
2. this can be used to invoke current class method (implicitly)
3. this() can be used to invoke current class constructor.
4. this can be passed as an argument in the method call.
5. this can be passed as argument in the constructor call.
6. this can be used to return the current class instance from the method.
15. What gives java it’s “write once and run anywhere” nature? [Understanding]
All Java programs are compiled into class files that contain byte codes. These byte codes can
be run in any platform and hence java is said to be platform independent.
16. Why Java is Platform Independent. [Creating]
Java is platform independent because it can run on any platform i.e on windows,mac etc. ...
Because it contains its own virtual machine which have JRE which runs java program as byte
code. You may have different JRE for differentplatforms .Once you installed it in your system
you can run any java application on it.
17. Why Java is Architecture-Neutral. [Analyzing]
Java was designed to support applications on networks. To enable a Javaapplication to execute
anywhere on the network, the compiler generates anarchitecture-neutral object file format--the
compiled code is executable on many processors, given the presence of the Java runtime system
18 .What is finalize() method? [Remembering]
Finalize () method is used just before an object is destroyed and can be called just prior to
garbage collection
}
}
3. What are the uses of the keyword ‘final’? [Remembering]
• The class can be declared as final, if instances or subclasses are not to be created.
• The variables are declared as final, value of the variable must be provided at the time
of declaration.
• The Method can be declared as final indicating that they cannot be overridden by
subclasses.
4. What are static methods? [Remembering]
Static methods and variables can be used independently of any object. To do so, you need only
specify the name of their class following by the dot operator.
5. What is inheritance? [Applying]
In Object-Oriented programming, inheritance refers to the properties of a class being available
to many other classes. A derived class / sub class is one that has been created from an existing
class.
Inheritance is the process of deriving a class from a super class or a base class. No changes are
made to the base class. The derived class has a larger set of properties that its base class.
Inheritance has two advantages
a) Reusability of code
b) Data and methods of a super class are physically available to its subclasses
6. What is the use of ‘Super’ Keyword? Give an example. [Remembering]
Usage of ‘super’ keyword’
1. The first calls the superclass constructor
2. To access a member of the superclass that has been hidden by a member of a subclass
7. Difference between method overloading and method overriding in java. [Analyzing]
Overloading Overriding - Whenever same method or Constructor is existing multiple times
within a class either with different number of parameter or with different type of parameter or
with different order of parameter is known as Overloading.
Whenever same method name is existing multiple time in both base and derived class with
same number of parameter or same type of parameter or same order of parameters is known as
Overriding.
Arguments of method must be different at least arguments.
Argument of method must be same including order.
Method signature must be different. Method signature must be same.
Private, static and final methods can be overloaded.
Private, static and final methods can not be override.
Access modifiers point of view no restriction. Access modifiers point of view not reduced
scope of Access modifiers but increased.
8. What is constructor overloading. [Understanding]
Constructor overloading in Java is a technique of having more than one constructor with
different parameter lists. They are arranged in a way that each constructor performs a different
task. They are differentiated by the compiler by the number of parameters in the list and their
types.
9. How to pass object as argument in java? [Remembering]
1. We can pass Object of any class as parameter to a method in java.
2. We can access the instance variables of the object passed inside the called method.
3. It is good practice to initialize instance variables of an object before passing object
as parameter to method otherwise it will take default initial values.
10. What is recursion? [Understanding]
Java supports recursion. Recursion is the process of defining something in terms of itself.
As it relates to java programming, recursion is the attribute that allows a method to call
itself. A method that calls itself is said to be recursive.
11. List Access Specifiers in java. [Analyzing]
Java Access Specifiers (also known as Visibility Specifiers ) regulate access to classes,
fields and methods in Java.
There are 4 types of java access modifiers:
1. private
2. default
3. protected
4. public
12. What are the uses of the keyword ‘final’? [Analyzing]
1 The class can be declared as final, if instances or subclasses are not to be created.
2 The variables are declared as final, value of the variable must be provided at the time
of declaration.
3 The Method can be declared as final indicating that they cannot be overridden by
subclasses.
13. What are static methods? [Applying]
Static methods and variables can be used independently of any object. To do so, you need only
specify the name of their class following by the dot operator.
14. What is inheritance? [Understanding]
In Object-Oriented programming, inheritance refers to the properties of a class being available
to many other classes. A derived class / sub class is one that has been created from an existing
class.
Inheritance is the process of deriving a class from a super class or a base class. No changes are
made to the base class. The derived class has a larger set of properties that its base class.
Inheritance has two advantages
a) Reusability of code
b) Data and methods of a super class are physically available to its subclasses
15. Define abstract class? [Analyzing]
Abstract classes are classes from which instances are usually not created. It is basically used to
contain common characteristics of its derived classes. Abstract classes are generally higher up
the hierarchy and act as super classes. Methods can also be declared as abstract. This implies
that non-abstract classes must implement these .
16.What are the rules for method overriding. [Analyzing]
1. The method must have the same name as in the parent class
2. The method must have the same parameter as in the parent class.
3. There must be an IS-A relationship (inheritance).
17.What is Static Polymorphism? [Applying]
Static Polymorphism is also known as compile time binding or early binding. 2. Static binding
happens at compile time. Method overloading is an example of static binding where binding of
method call to its definition happens at Compile time.
18. What are the 3 ways of Overloading Method? [Creating]
1. Different Number of parameters in argument list.
2. Difference in data type of arguments.
3. Sequence of data type of arguments
19. What are the types of inheritance [Applying]
1. Single Inheritance
2. Multiple Inheritance (Through Interface)
3. Multilevel Inheritance
4. Hierarchical Inheritance
5. Hybrid Inheritance (Through Interface).
20. Can you use this () and super () both in a constructor? [Analyzing]
We cannot have two statements as first statement, so we either need to call super() or this()
but not the both. We can't use both the keywords in the constructor. In Java there is a rule that
this() and super() must be first statement in the constructor. So we can't use both together in
a constructor.
21. How can we achieve multiple inheritance in java? [Creating]
Way to achieve multiple inheritance through interfaces in java. class A extends B, C // this is
not possible in java directly but can be achieved indirectly. We can implement both of these
using the code below... We CANNOT extend two objects, but we can implement two
interfaces.
22 What is meant by Nested Class? [Understanding]
Class within another class, such classes are known as nested classes.
Nested classes are divided into two categories:
1. static nested class : Nested classes that are declared static are called static nested
classes.
2. inner class : An inner class is a non-static nested class.