Java_1719773283
Java_1719773283
Questions
Q1. What is the difference between an Inner Class and a Sub-Class?
Ans: An Inner class is a class which is nested within another class. An Inner class has
access rights for the class which is nesting it and can access all variables and methods
defined in the outer class.
A sub-class is a class which inherits from another class called a superclass. Sub-class
can access all
Q2. What are the various access specifiers for Java classes?
Ans: In Java, access specifiers are the keywords used before a class name which defines
the access
2. Protected: Method, Field can be accessed from the same class to which they belong
or from the sub-classes,and the class of the same package, but not from outside
3. Default: Method, Field, class can be accessed only from the same package and not
from outside of it's native package.
4. Private: Method, Field can be accessed from the same class to which they belong8.
A singleton class in Java can have only one instance and hence all its methods and
variables belong to just one instance. Singleton class concept is useful for the
situations when there is a need to limit the number of objects for a class.
The best example of singleton usage scenario is when there is a limit of having only one
connection to a database due to some driver limitations or because of any licensing
issues.
Q6. What are Loops in Java? What are three types of loops?
1) For Loops
For loops are used in Java to execute statements repeatedly for a given number of
times. For loops
are used when number of times to execute the statements is known to programmer.
2) While Loops
While loop is used when certain statements need to be executed repeatedly until a
condition is
3) Do While Loops
Do While Loop is same as While loop with only difference that condition is checked
after execution
Ans: An infinite loop runs without any condition and runs infinitely. An infinite loop can
be broken by defining any breaking logic in the body of the statement blocks.
for (::)
//Statements to execute
Ans: break and continue are two important keywords used in Loops. When a break
keyword is used in a loop, the loop is broken instantly; when the continue keyword is
used, the current iteration is broken and the loop continues with the next iteration.
for (counter-0;counter<10;counter+)
system.out.println(counter);
if (counter-=4){
break:)
In the below example when counter reaches 4, loop jumps to next iteration and any
statements
for (counter=0;counter<10;counter++)
system.out.printin(counter);
if (counter==4){
continue;
Q9. What is the difference between double and float variables in Java?
Ans: In Java, float takes 4 bytes in memory while Double takes 8 bytes in memory. Float
is single precision floating point decimal number while Double is double precision
decimal number.
Ans: In Java, a constant is declared using the keyword Final. Value can be assigned only
once and after assignment, value of a constant can't be changed.
In below example, a constant with the name const_val is declared and assigned avalue:
When a class is declared as final, it cannot be subclassed. Example String, Integer and
other wrapper classes.
Ans: Ternary operator, also called conditional operator is used to decide which value to
assign to a variable based on a Boolean value evaluation. It's denoted as?
In the below example, if rank is 1, status is assigned a value of "Done" else "Pending".
String status;
int rank 3;
System.out.println(status);
Using Math.random() you can generate random numbers in the range greater than or
equal to 0.1 and less than 1.0
Ans: In a switch statement, default case is executed when no other switch condition
matches.
It can be declared only once all other switch cases have been coded.
int score=4;
switch (score) {
case 1:
system.out.println("Score is 1");
break;
case 2:
system.out.println("Score is 2");
break;
default:
system.out.println("Default Case")
Q14. What's the base class in Java from which all classes are derived?
Ans: Java.lang.object
Q15. Can main() method in Java can return any data?
Ans: In Java, main() method can't return any data and hence, ite's always declared with
a void return type.
Ans: In Java, package is a collection of classes and interfaces which are bundled
together as they are related to each other. Use of packages helps developers to
modularize the code and group the code for proper re-use. Once code has been
packaged in Packages, it can be imported in other classes and used.
Q17. Can we declare a class as Abstract without having any abstract method?
Ans: Yes we can create an abstract class by using abstract keyword before class name
even if it doesn't have any abstract method. However, if a class has even one abstract
method, it must be declared as abstract otherwise it will give an error.
Q18. What's the difference between an Abstract Class and Interface in Java?
Ans: The primary difference between an abstract class and interface is that an interface
can only possess declaration of public static methods with no concrete implementation
while an abstract class can have members with any access specifiers (public, private
etc) with or without concrete implementation.
Another key difference in the use of abstract classes and interfaces is that a class
which implements an interface must implement all the methods of the interface while
a class which inherits from an abstract class doesn't require implementation of all the
methods of its super class.
A class can implement multiple interfaces but it can extend only one abstract class.
Q19. What are the performance implications of Interfaces over abstract classes?
Use of interfaces also puts an extra burden on the developers as any time an interface
is implemented in a class; developer is forced to implement each and every method of
interface.
Q20. Does Importing a package imports its sub-packages as well in Java?
Ans: In Java, when a package is imported, its sub-packages aren't imported and
developer needs to import them separately if required.
For example, if a developer imports a package university.", all classes in the package
named university are loaded but no classes from the sub-package are loaded. To load
the classes from its sub-package ( say department), developer has to import it explicitly
as follows:
Import university.department.*
Ans: In Java, main method must be public static in order to run any application
correctly. If main method is declared as private, developer won't get any compilation
error however, it will not get executed and will give a runtime error.
Ans: In Java, we can pass argument to a function only by value and not by reference.
Ans: In Java, to convert an object into byte stream by serialization, an interface with
the name
Ans: Serialization is used when data needs to be transmitted over the network. Using
serialization, object's state is saved and converted into byte stream .The byte stream is
transferred over the network and the object is re-created at destination.
Q25. Is it compulsory for a Try Block to be followed by a Catch Block in Java for
Exception handling?
Ans: Try block needs to be followed by either Catch block or Finally block or both. Any
exception thrown from try block needs to be either caught in the catch block or else
any specific tasks to be performed before code abortion are put in the Finally block.
Q26. Is there any way to skip Finally block of exception even if some exception
occurs in the exception block?
Ans: If an exception is raised in Try block, control passes to catch block if it exists
otherwise to finally block. Finally block is always executed when an exception occurs
and the only way to avoid execution of any statements in Finally block is by aborting
the code forcibly by writing following line of code at the end of try block:
System.exit{0);
Ans: The constructor of a class is invoked every time an object is created with new
keyword.
For example, in the following class two objects are created using new keyword and
hence, constructor is invoked two times.
const_example() {
system.out.println("Inside constructor"};
Ans: Yes, a class can have multiple constructors with different parameters. Which
constructor gets used for object creation depends on the arguments passed while
creating the objects.
Ans: No, we cannot override static methods of a class in Java. Static methods belong to
the class itself rather than any instance of the class, and method overriding is a feature
that is inherently tied to instance methods.
When a static method is declared in a subclass with the same name and parameter list
as a static method in the parent class, it is called method hiding, not method
overriding. In this case, the static method in the subclass hides the static method in the
parent class.
super.displayResult();
obj.displayResuit();
Ans: String is not a primitive data type in Java. When a string is created in Java, it's
actually an object of Java. lang.String class that gets created. After creation of this
string object, all built-in methods of String class can be used on the string object.
Q32. In the below example, how many String Objects are created?
Ans: In the above example, two objects of Java.Lang.String class are created. s1 and s3
are references to same object.
Ans: In Java, string objects are called immutable as once value has been assigned to a
string, it can't be changed and if changed, a new object is created.
In below example, reference str refers to a string object having value "Value one".
When a new value is assigned to it, a new String object gets created and the reference
is moved to the new object.
str="New Value";
Ans: An array groups data of same primitive type and is static in nature while vectors
are dynamic in nature and can hold data of different data types.
Ans: Runnable interface is used in Java for implementing multi threaded applications.
Ans: Multi-threaded applications can be developed in Java by using any of the following
two methodologies:
Q38. When a lot of changes are required in data, which one should be a preference
to be used? String or StringBuffer?
Ans: Since StringBuffers are dynamic in nature and we can change the values of
StringBuffer objects unlike String which is immutable, it's always a good choice to use
StringBuffer when data is being changed too much. If we use String in such a case, for
every data change a new String object will be created which will be an extra overhead.
Q39. What's the purpose of using Break in each case of Switch Statement?
Ans: Break is used after each case (except the last one) in a switch so that code breaks
after the valid case and doesn't flow in the proceeding cases too.
If break isn't used after each case, all cases after the valid case also get executed
resulting in wrong results.
Ans: In Java, when an object is not referenced any more, garbage collection takes place
and the object is destroyed automatically. For automatic garbage collection Java calls
either System.gc) method or Runtime.gc() method.
Q41. How we can execute any code even before main method?
Ans: If we want to execute any statements before even creation of objects at load time
of class, we can use a static block of code in the class. Any statements inside this static
block of code will get executed once at the time of loading the class even before
creation of objects in the main method.
Q42. Can a class be a super class and a sub-class at the same time? Give example.
Ans: If there is a hierarchy of inheritance used, a class can be a super class for another
class and a sub-class for another one at the same time.
In the example below, continent class is sub-class of world class and it's super class of
country class.
**********
***********
Q43. How objects of a class are created if no constructor is defined in the class?
Ans: Even if no explicit constructor is defined in a Java class, objects get created
successfully as a default constructor is implicitly used for object creation. This
constructor has no parameters.
Q44. In multi-threading how can we ensure that a resource isn't used by multiple
threads simultaneously?
Ans: In multi-threading, access to the resources which are shared among multiple
threads can be controlled by using the concept of synchronization. Using synchronized
keyword, we can ensure that only one thread can use shared resource at a time and
others can get control of the resource only once it has become free from the other one
using it.
Q45. Can we call the constructor of a class more than once for an object?
Ans: Constructor is called automatically when we create an object using new keyword.
It's called only once for an object at the time of object creation and hence, we can't
invoke the constructor again for an object after its creation.
Q46. There are two classes named classA and classB. Both classes are in the same
package. Can a private member of classA can be accessed by an object of classB?
Ans: Private members of a class aren't accessible outside the scope of that class and
any other class even in the same package can't access them.
Q47. Can we have two methods in a class with the same name?
Ans: We can define two methods in a class with the same name but with different
number/type of parameters. Which method is to get invoked will depend upon the
parameters passed.
For example in the class below we have two print methods with same name but
different parameters. Depending upon the parameters, appropriate one will be called:
obj1.print()
objl.print("xx");
Ans: We can use the concept of cloning to create copy of an object. Using clone, we
create copies with the actual state of an object. Clone() is a method of Cloneable
interface and hence, Cloneable interface needs to be implemented for making object
copies.
Ans: Key benefit of using inheritance is reusability of code as inheritance enables sub-
classes to reuse the code of its super class. Polymorphism (Extensibility ) is another
great benefit which allow new functionality to be introduced without effecting existing
derived classes.
Q50. What's the default access specifier for variables and methods of a class?
Ans: Default access specifier for variables and method is package protected i.e
variables and class is available to any other class but in the same package,not outside
the package.
Ans: There are no pointers in Java. So we can't use concept of pointers in Java.
Q52. How can we restrict inheritance for a class so that no class can be inherited
from it?
Ans: If we want a class not to be extended further by any class, we can use the keyword
Final with the class name.
Access Levels
Public Y Y Y Y
Protected Y Y Y N
No modifier Y Y N N
Private Y N N N
Ans: Stack and Queue both are used as placeholder for a collection of data. The
primary difference between a stack and a queue is that stack is based on Last in First
out (LIFO) principle while a queue is based on FIFO (First In First Out) principle.
Ans: If we want certain variables of a class not to be serialized, we can use the keyword
transient while declaring them. For example, the variable trans_var below is a transient
variable and can't be serialized:
Ans: Checked exceptions can be caught at the time of program compilation. Checked
exceptions must be handled by using try catch block in the code in order to
successfully compile the code.
Waiting: A thread waiting for another thread to free certain resources is in waiting
state.
Dead: A thread which has gone dead after execution is in dead state.
Q60. Can we override a method by using same method name and arguments but
different return types?
Ans: The basic condition of method overriding is that method name, arguments as well
as return type must be exactly same as is that of the method being overridden. Hence
usinga different return type doesn't override a method.
system.out.printinx++}
Ans: In this case postfix ++ operator is used which first returns the value and then
increments.
Q61. A person says that he compiled a Java class successfully without even having a
main method in it? Is it possible?
Ans: main method is an entry point of Java class and is required for execution of the
program however; a class gets compiled successfully even if it doesn't have a main
method. It can't be run though.
Ans: Non-Static methods are owned by objects of a class and have object level scope
and in order to call the non-Static methods from a static block (like froma static main
method), an object of the class needs to be created first. Then using object reference,
these methods can be invoked.
Q63. What are the two environment variables that must be set in order to run any
Java programs?
Ans: Java programs can be executed in a machine only once the following two
environment variables have been properly set:
1. PATH variable
2. CLASSPATH variable
Ans: In Java, if a variable is used in a code without prior initialization by a valid value,
program doesn't compile and gives an error as no default value is assigned to variables
in Java.
Q65. Can a class in Java be inherited from more than one class?
Ans: In Java, a class can be derived from only one class and not from multiple classes.
Multiple inheritances is not supported by Java.
Q66. Can a constructor have different name than a Class name in Java?
Ans: Constructor in Java must have same name as the class name and if the name is
different, it doesn't act as a constructor and compiler thinks of it as a normal method.
Ans: In Java, there is not goto keyword and Java doesn't support this feature of going to
a particular labeled line.
Ans: In Java, a thread which is in dead state can't be started again. There is no way to
restart a dead thread.
Ans:
Ans: The above class declaration is incorrect as an abstract class can't be declared as
Final.
Ans: JDK is development Kit of Java and is required for development only and to run a
Java program on a machine, JDK isn't required. Only JRE is required.
Q72. What's the difference between comparison done by equals method and ==
operator?
Ans: In Java, equals() method is used to compare the contents of two string objects and
returns true if the two have same value while == operator compares the references of
two string objects.
In the following example, equals() returns true as the two string objects have same
values.
However == operator returns false as both string objects are referencing to different
objects:
if (str1.equals(str2))
if (str1== str2){
}else
Q73. Is it possible to define a method in Java class but provide it's implementation
in the code of another language like C?
Ans: Yes, we can do this by use of native methods. In case of native method based
development, we define public static methods in our Java class without its
implementation and then implementation is done in another language like C
separately.
Ans: In Java, there are no destructors defined in the class as there is no need to do so.
Java has its own garbage collection mechanism which does the job automatically by
destroying the objects when no longer referenced.
Ans: Static methods can't be overridden in any class while any methods in an interface
are by default abstract and are supposed to be implemented in the classes being
implementing the interface. So it makes no sense to have static methods in an
interface in Java.
Q77. In a class implementing an interface, can we change the value of any variable
defined in the interface?
Ans: No, we can't change the value of any variable of an interface in the implementing
class as all variables defined in the interface are by default public, static and Final and
final variables are like constants which can't be changed later.
Q78. Is it correct to say that due to garbage collection feature in Java, a Java
program never goes out of memory?
Ans: Even though automatic garbage collection is provided by Java, it doesn't ensure
that a Java program will not go out of memory as there is a possibility that creation of
Java objects is being done at a faster pace compared to garbage collection resulting in
filling of all the available memory resources.
So, garbage collection helps in reducing the chances of a program going out of memory
but it doesn't ensure that.
Q79. Can we have any other return type than void for main method?
Ans: No, Java class main method can have only void return type for the program to get
successfully executed. Nonetheless, if you absolutely must return a value to at the
completion of main method, you can use System.exitint status)
Q80.I want to re-reach and use an object once it has been garbage collected. How
it's possible?
Ans: Once an object has been destroyed by garbage collector, it no longer exists on the
heap and it can't be accessed again. There is no way to reference it again.
Q81. In Java thread programming, which method is a must implemetation for all
threads?
Ans: Run() is a method of Runnable interface that must be implemented by all threads.
Q82. I want to control database connections in my program and want that only one
thread should be able to make database connection at a time. How can I implement
this logic?
Ans: In order to throw an exception in a block of code manually, throw keyword is used.
Then this exception is caught and handled in the catch block.
try{
excMethod();
catch(ManualException e){
String name=null;
if(name == null}{
Q84. I want my class to be developed in sucha way that no other class (even derived
class) can create its objects. How can I do so?
Ans: If we declare the constructor of a class as private, it will not be accessible by any
other class and hence, no other class will be able to instantiate it and formation of its
object will be limited to itself only.
Q86. How can we find the actual size of an object on the heap?
Ans: In Java, there is no way to find out the exact size of an object on the heap.
Q87. Which of the following classes will have more memory allocated?
Ans: Memory isn't allocated before creation of objects. Since for both classes, there are
no objects created so no memory is allocated on heap for any class.
Ans: If an exception is not handled in a program using try catch blocks, program gets
aborted and no statement executes after the statement which caused exception
throwing
Ans: If a class has multiple constructors, it's possible to call one constructor from the
body of another one using this().
Ans: An anonymous class is a class defined without any name in a single line of code
using new keyword.
For example, in below code we have defined an anonymous class in one line of code:
import java.util.Enumeration;
return false;
@Override
return null;
};
while (enumeration.hasMoreElements()) {
System.out.println(enumeration.nextElement());
Q91. Is there a way to increase the size of an array after its declaration?
Ans: Arrays in Java are static, meaning that once we specify their size, we cannot
change it. If we need a collection that can dynamically change its size, we should prefer
using classes from the Java Collections Framework such as ArrayList rather than
Vector.
Q92. If an application has multiple classes in it, is it okay to have a main method in
more than one class?
Ans: Yes, it is okay to have a main method in more than one class in a Java application.
Having multiple classes with a main method will not cause any issues because the entry
point for the application will be the main method of the class that is specified when the
application is run.
Explanation:
Q93.I want to persist data of objects for later use. What's the best approach to do
so?
Ans: The best way to persist data for future use is to use the concept of serialization.
Ans: In Java, if we define a new class inside a particular block, it's called a local class.
Such a class has local scope and isn't usable outside the block where its defined.
Q95. String and StringBuffer both represent String objects. Can we compare String
and StringBuffer in Java?
Ans: In Java, String and StringBuffer both represent string data, but they are different
types of objects and serve different purposes. Here’s an explanation of how to compare
them:
Differences between String and StringBuffer:
1. Immutability:
String objects are immutable. Once a String object is created, it cannot be
changed.
StringBuffer objects are mutable. They can be modified after creation without
creating new objects.
2. Purpose:
String is used when you have fixed string data that doesn't change.
StringBuffer is used when you have string data that will change frequently, as it
is more efficient for modifications.
1. Direct Comparison:
You cannot directly compare String and StringBuffer objects using the ==
operator or the equals method, because StringBuffer does not override the
equals method to compare contents. Instead, it inherits the equals method from
Object, which compares references, not values.
2. Conversion for Comparison:
To compare a String and a StringBuffer, you need to convert the StringBuffer to
a String using the toString method and then compare the String objects using
the equals method.
When you compare a String and a StringBuffer directly using == or .equals() without
converting the StringBuffer to a String, the comparison will always result in false due to
the difference in object types and reference comparison. To compare their content,
convert the StringBuffer to a String first or use the contentEquals() method of String.
Ans: Java provides a Collection APl which provides many useful methods which can be
applied on a set of objects. Some of the important classes provided by Collection API
include ArrayList, Hash Map, TreeSet and TreeMap.
Q97. Can we cast any other type to Boolean Type with type casting?
Ans: No, we can neither cast any other primitive type to Boolean data type nor can cast
Boolean data type to any other primitive data type.
Q98. Can we use different return types for methods when overridden?
Ans: The basic requirement of method overriding in Java is that the overridden method
should have same name, and parameters.But a method can be overridden with a
different return type as long as the new return type extends the original.
Class B extends A{
A method(int x){
//original method
B method(int x){
//overridden method
Ans: In Java, Java.lang.Throwable is the super class of all exception classes and all
exception classes are derived from this base class.
Ans: In case of inheritance, when a new object of a derived class is created, first the
constructor of the super class is invoked and then the constructor of the derived class
is invoked.