Java VIVA Question
Java VIVA Question
Inheritance is the process of inheriting all the features from a class. The advantages of
inheritance are reusability of code and accessibility of variables and methods of the super
class by subclasses.
9. What is the difference between superclass and subclass?
A super class is a class that is inherited whereas sub class is a class that does the inheriting.
10. What is an abstract class?
An abstract class is a class designed with implementation gaps for subclasses to fill in and is
deliberately incomplete.
11. What are the states associated in the thread?
Thread contains ready, running, waiting and dead states.
12. What is synchronization?
Synchronization is the mechanism that ensures that only one thread is accessed the resources
at a time.
13. What is deadlock?
When two threads are waiting each other and can’t precede the program is said to be
deadlock.
14. What is an applet?
Applet is a dynamic and interactive program that runs inside a web page displayed by a java
capable browser
15. What is the lifecycle of an applet?
init() method – Can be called when an applet is first loaded
start() method – Can be called each time an applet is started.
paint() method – Can be called when the applet is minimized or maximized.
stop() method – Can be used when the browser moves off the applet’s page.
destroy() method – Can be called when the browser is finished with the applet.
16. Define How do you set security in applets?
using setSecurityManager() method
17. What is a layout manager and What are different types of layout managers available in
java AWT?
A layout manager is an object that is used to organize components in a container. The
different layouts are available are FlowLayout, BorderLayout, CardLayout, GridLayout and
GridBagLayout
18. What is JDBC?
JDBC is a set of Java API for executing SQL statements. This API consists of a set of classes
and interfaces to enable programs to write pure Java Database applications.
19. What are drivers available?
JDBC-ODBC Bridge driver
Native API Partly-Java driver
JDBC-Net Pure Java driver
Native-Protocol Pure Java driver
20. What is stored procedure?
Stored procedure is a group of SQL statements that forms a logical unit and performs a
particular task. Stored Procedures are used to encapsulate a set of operations or queries to
execute on database. Stored procedures can be compiled and executed with different
parameters and results and may have any combination of input/output parameters.
21. What is the Java API?
The Java API is a large collection of ready-made software components that provide many
useful capabilities, such as graphical user interface (GUI) widgets.
22. Why there are no global variables in Java?
Global variables are globally accessible. Java does not support globally accessible variables
due to following reasons:
The global variables breaks the referential transparency
Global variables creates collisions in namespace.
23. What are Encapsulation, Inheritance and Polymorphism?
Encapsulation is the mechanism that binds together code and data it manipulates and keeps
both safe from outside interference and misuse. Inheritance is the process by which one
object acquires the properties of another object. Polymorphism is the feature that allows one
interface to be used for general class actions.
24. What is the use of bin and lib in JDK?
Bin contains all tools such as javac, appletviewer, awt tool, etc., whereas lib contains API and
all packages.
25. What is method overloading and method overriding?
Method overloading: When a method in a class having the same method name with different
arguments is said to be method overloading. Method overriding : When a method in a class
having the same method name with same arguments is said to be method overriding.
26. What is the difference between this() and super()?
this() can be used to invoke a constructor of the same class whereas super() can be used to
invoke a super class constructor.
27. What is Domain Naming Service(DNS)?
It is very difficult to remember a set of numbers(IP address) to connect to the Internet. The
Domain Naming Service(DNS) is used to overcome this problem. It maps one particular IP
address to a string of characters. For example, www. mascom. com implies com is the
domain name reserved for US commercial sites, moscom is the name of the company and
www is the name of the specific computer, which is mascom’s server.
28. What is URL?
URL stands for Uniform Resource Locator and it points to resource files on the Internet. URL
has four components: http://www. address. com:80/index.html, where http – protocol name,
address – IP address or host name, 80 – port number and index.html – file path.
29. What is RMI and steps involved in developing an RMI object?
Remote Method Invocation (RMI) allows java object that executes on one machine and to
invoke the method of a Java object to execute on another machine. The steps involved in
developing an RMI object are: a) Define the interfaces b) Implementing these interfaces c)
Compile the interfaces and their implementations with the java compiler d) Compile the
server implementation with RMI compiler e) Run the RMI registry f) Run the application.
30. What is RMI architecture?
RMI architecture consists of four layers and each layer performs specific functions: a)
Application layer – contains the actual object definition. b) Proxy layer – consists of stub and
skeleton. c) Remote Reference layer – gets the stream of bytes from the transport layer and
sends it to the proxy layer. d) Transportation layer – responsible for handling the actual
machine-to-machine communication.
31. What is a Java Bean?
A Java Bean is a software component that has been designed to be reusable in a variety of
different environments.
32. What are checked exceptions?
Checked exception are those which the Java compiler forces you to catch. e.g. IOException
are checked Exceptions.
33. What are runtime exceptions?
Runtime exceptions are those exceptions that are thrown at runtime because of either wrong
input data or because of wrong business logic etc. These are not checked by the compiler at
compile time.
34. What is the difference between error and an exception?
The purpose of finalization is to give an unreachable object the opportunity to perform any
cleanup processing before the object is garbage collected. For example, closing a opened file,
closing a opened database Connection.
When a task invokes its yield() method, it returns to the ready state. When a task invokes its
sleep() method, it returns to the waiting state.
37. What is the difference between preemptive scheduling and time slicing?
Under preemptive scheduling, the highest priority task executes until it enters the waiting or
dead states or a higher priority task comes into existence. Under time slicing, a task executes
for a predefined slice of time and then reenters the pool of ready tasks. The scheduler then
determines which task should execute next, based on priority and other factors.
If a object value is changeable then we can call it as Mutable object. (Ex., StringBuffer, …) If
you are not allowed to change the value of an object, it is immutable object. (Ex., String,
Integer, Float, …)
The Void class is an uninstantiable placeholder class to hold a reference to the Class object
representing the early Java type void.
public: Any thing declared as public can be accessed from anywhere. private: Any thing
declared as private can’t be seen outside of its class. protected: Any thing declared as
protected can be accessed by classes in the same package and subclasses in the other
packages. default modifier : Can be accessed only to classes in the same package.
Servlets are modules that extend request/response-oriented servers, such as java-enabled web
servers. For example, a servlet might be responsible for taking data in an HTML order-entry
form and applying the business logic used to update a company’s order database.
A constructor is a special method whose task is to initialize the object of its class.
It is special because its name is the same as the class name.
They do not have return types, not even void and therefore they cannot return values.
They cannot be inherited, though a derived class can call the base class constructor.
Constructor is invoked whenever an object of its associated class is created.
47. What is an Iterator ?
A memory leak is where an unreferenced object that will never be used again still hangs
around in memory and doesnt get garbage collected.
50. What is the difference between the prefix and postfix forms of the ++ operator?
The prefix form performs the increment operation and returns the value of the increment
operation. The postfix form returns the current value all of the expression and then performs
the increment operation on that value.
A constructor is a member function of a class that is used to create objects of that class. It has
the same name as the class itself, has no return type, and is invoked using the new operator.
A method is an ordinary member function of a class. It has its own name, a return type
(which may be void), and is invoked using the dot operator.
52. What will happen to the Exception object after exception handling?
Static class loading: The process of loading a class using new operator is called static class
loading. Dynamic class loading: The process of loading a class at runtime is called dynamic
class loading.
Dynamic class loading can be done by using Class.forName(….).newInstance().
JSP is a technology that returns dynamic content to the Web client using HTML, XML and
JAVA elements. JSP page looks like a HTML page but is a servlet. It contains Presentation
logic and business logic of a web application.
56. What is the purpose of apache tomcat?
Apache server is a standalone server that is used to test servlets and create JSP pages. It is
free and open source that is integrated in the Apache web server. It is fast, reliable server to
configure the applications but it is hard to install. It is a servlet container that includes tools to
configure and manage the server to run the applications. It can also be configured by editing
XML configuration files.
Pragma is used inside the servlets in the header with a certain value. The value is of no-cache
that tells that a servlets is acting as a proxy and it has to forward request. Pragma directives
allow the compiler to use machine and operating system features while keeping the overall
functionality with the Java language. These are different for different compilers.
Daemon thread is a low priority thread which runs in the background performs garbage
collection operation for the java runtime system.
A Java thread could be implemented by using Runnable interface or by extending the Thread
class. The Runnable is more advantageous, when you are going for multiple inheritance.
One implementation interface for database manufacturers, the other implementation interface
for application and applet writers.
It is a daemon thread.
65.What is UNICODE?
Unicode is used for internal representation of characters and strings and it uses 16 bits to
represent each other.
66. Can a constructor have different name than a Class name in Java?
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.
In Java, there is not goto keyword and java doesn’t support this feature of going to a
particular labeled line.
In java, a thread which is in dead state can’t be started again. There is no way to restart a dead
thread.
}
The above class declaration is incorrect as an abstract class can’t be declared as Final.
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.
72. Which object oriented Concept is achieved by using overloading and overriding?
Polymorphism
73. Is it possible to define a method in Java class but provide it’s implementation in the code
of another language like C?
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.
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.
No a variable can’t be static as well as local at the same time. Defining a local variable as
static gives compilation error.
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.
77. In a class implementing an interface, can we change the value of any variable defined in
the interface?
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.
78. Is it correct to say that due to garbage collection feature in Java, a java program never
goes out of memory?
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.
79. Can we have any other return type than void for main method?
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.exit(int status)
80. I want to re-reach and use an object once it has been garbage collected. Define How it’s
possible?
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.
81. In Java thread programming, which method is a must implementation for all threads?
82. 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. Define How can I implement this
logic?
This can be implemented by use of the concept of synchronization. Database related code can
be placed in a method which hs synchronized keyword so that only one thread can access it at
a time.
Yes an Interface can inherit another Interface, for that matter an Interface can extend more
than one Interface.
84. I want my class to be developed in such a way that no other class (even derived class) can
create its objects. Define How can I do so?
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.
In java, each object when created gets a memory space from a heap. When an object is
destroyed by a garbage collector, the space allocated to it from the heap is re-allocated to the
heap and becomes available for any new objects.
86. Define How can we find the actual size of an object on the heap?
In java, there is no way to find out the exact size of an object on the heap.
87. Which of the following classes will have more memory allocated?
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.
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.
89. I have multiple constructors defined in a class. Is it possible to call a constructor from
another constructor’s body?
If a class has multiple constructors, it’s possible to call one constructor from the body of
another one using this().
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:
public java.util.Enumeration testMethod()
{
return new java.util.Enumeration()
@Override
return false;
@Override
return null;
91. Is there a way to increase the size of an array after its declaration?
Arrays are static and once we have specified its size, we can’t change it. If we want to use
such collections where we may require a change of size ( no of items), we should prefer
vector over array.
92. If an application has multiple classes in it, is it okay to have a main method in more than
one class?
If there is main method in more than one classes in a java application, it won’t cause any
issue as entry point for any application will be a specific class and code will start from the
main method of that particular class only.
93. I want to persist data of objects for later use. What’s the best approach to do so?
The best way to persist data for future use is to use the concept of serialization.
94. What is a Local class in Java?
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.
95. String and StringBuffer both represent String objects. Can we compare String and
StringBuffer in Java?
Although String and StringBuffer both represent String objects, we can’t compare them with
each other and if we try to compare them, we get an error.
Java provides a Collection API 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,
HashMap, TreeSet and TreeMap.
97. Can we cast any other type to Boolean Type with type casting?
No, we can neither cast any other early type to Boolean data type nor can cast Boolean data
type to any other early data type.
Synchronized methods are methods that are used to control access to an object. A
synchronized statement can only be executed after a thread has acquired the lock for the
object or class referenced in the synchronized statement.
99. Define How does a try statement determine which catch clause should be used to handle
an exception?
When an exception is thrown within the body of a try statement, the catch clauses of the try
statement are examined in the order in which they appear. The first catch clause that is
capable of handling the exception is executed. The remaining catch clauses are ignored.
100. What will be the default values of all the elements of an array defined as an instance
variable?
If the array is an array of early types, then all the elements of the array will be initialized to
the default value corresponding to that early type.
106. Can you write a Java class that could be used both as an applet as well as an application?
Yes, just add a main() method to the applet.
110. Can you call one constructor from another if a class has multiple constructors?
Yes, use this() syntax.
111. What’s the difference between the methods sleep() and wait()?
The code sleep(2000); puts thread aside for exactly two seconds. The code wait(2000), causes
a wait of up to two second. A thread could stop waiting earlier if it receives the notify() or
notifyAll() call. The method wait() is defined in the class Object and the method sleep() is
defined in the class Thread.
116. Does garbage collection guarantee that a program will not run out of memory?
Garbage collection does not guarantee that a program will not run out of memory. It is
possible for programs to use up memory resources faster than they are garbage collected. It is
also possible for programs to create objects that are not subject to garbage collection.
119. What is the difference between a break statement and a continue statement?
A break statement results in the termination of the statement to which it applies (switch, for,
do, or while). A continue statement is used to end the current loop iteration and return control
to the loop statement.
123. What is the relationship between clipping and repainting under AWT?
When a window is repainted by the AWT painting thread, it sets the clipping regions to the
area of the window that requires repainting.
125. What class of exceptions are generated by the Java run-time system?
The Java runtime system generates RuntimeException and Error exceptions.
126. Under what conditions is an object’s finalize() method invoked by the garbage collector?
The garbage collector invokes an object’s finalize() method when it detects that the object has
become unreachable.
132. What will happen if static modifier is removed from the signature of the main method?
Program throws “NoSuchMethodError” error at runtime .
138. Is it necessary that each try block must be followed by a catch block?
It is not necessary that each try block must be followed by a catch block. It should be
followed by either a catch block or a finally block.
139. When a thread is created and started, what is its initial state?
A thread is in the ready state as initial state after it has been created and started.
152. What is the difference between the >> and >>> operators?
The >> operator carries the sign bit when shifting right. The >>> zero-fills bits that have been
shifted out.
153. Which method of the Component class is used to set the position and size of a
component?
setBounds() method is used for this purpose.
Initialization
Starting
Stopping
Destroying
Painting
166. Why is the role of init() method under applets?
It initializes the applet and is the first method to be called.
174. Which class is used by server applications to obtain a port and listen for client requests?
java.net.ServerSocket class is used by server applications to obtain a port and listen for client
requests
175. Which class represents the socket that both the client and server use to communicate
with each other?
java.net.Socket class represents the socket that both the client and server use to communicate
with each other.
177. What environment variables do I need to set on my machine in order to be able to run
Java programs?
CLASSPATH and PATH are the two variables.
181. If System.exit (0); is written at the end of the try block, will the finally block still
execute?
No in this case the finally block will not execute because when you say System.exit (0); the
control immediately goes out of the program, and thus finally never executes.
187. What is the difference between the size and capacity of a Vector?
The size is the number of elements actually stored in the vector, while capacity is the
maximum number of elements it can store at a given instance of time.
192. What are the restriction imposed on a static method or a static block of code?
A static method should not refer to instance variables without creating an instance and cannot
use “this” operator to refer the instance.
194. Which object oriented Concept is achieved by using overloading and overriding?
Polymorphism
197. What are order of precedence and associativity and how are they used?
Order of precedence determines the order in which operators are evaluated in expressions.
Associatity determines whether an expression is evaluated left-to-right or right-to-left.
199. What is the difference between inner class and nested class?
When a class is defined within a scope of another class, then it becomes inner class. If the
access modifier of the inner class is static, then it becomes nested class.
203. How does a try statement determine which catch clause should be used to handle an
exception?
When an exception is thrown within the body of a try statement, the catch clauses of the try
statement are examined in the order in which they appear. The first catch clause that is
capable of handling the exception is executed. The remaining catch clauses are ignored.
Runnable state
Running state
Blocked state
Dead state