What is an abstract method?
An abstract method is a method which doesn’t have a body, just declared with modifier abstract.
Explain the use of the finally block.
Finally block is a block which always executes. The block executes even when an exception is occurred. The block won't execute only when the user calls System.exit()
What is the initial state of a thread?
It is in a ready state.
What is time slicing?
In time slicing, the task continues its execution for a predefined period of time and reenters the pool of ready tasks.
What are Wrapper Classes?
Wrapper Classes allow to access primitives as objects.
What is List interface?
List is an ordered collection of objects.
Can you explain transient variables in java?
They are the variables that cannot be serialized.
What is synchronization?
Synchronization ensures only one thread to access a shared resource, thus controls the access of multiple threads to shared resources.
What is serialization?
Serialization helps to convert the state of an object into a byte stream.
What is HashMap and Map?
Map is Interface and Hashmap is class that implements that.
What is StringBuffer class?
StringBuffer class is same as String class with the exception that it is mutable. It allows change and doesn’t create a new instance on change of value.How can you force garbage collection?
It is not possible to force GC. We can just request it by calling System.gc().Is it possible an exception to be rethrown?
Yes, an exception can be rethrown.What is the return type of a program’s main() method?
A program’s main() method has a void return type.Which package is always imported by default?
The java.lang package is always imported by default.What is a Class?
A class implements the behavior of member objects by describing all the attributes of objects and the methods.What is an Object?
An object is the members of a class. It is the basic unit of a system. It has attributes, behavior and identity.Explain the use of "instanceOf" keyword.
"instanceOf" keyword is used to check the type of object.How do you refer to a current instance of object?
You can refer the current instance of object using "this" keyword.What is the use of JAVAP tool?
JAVAP is used to disassemble compiled Java files. This option is useful when original source code is not available.In which package is the applet class located?
Applet classes are located in "java.applet" package.Java array vs. ArrayList class.
ArrayList is a dynamic array that can grow depending on demand whereas Java arrays are fixed length.Explain Enumeration Interface.
It defines the methods using which we can enumerate the elements in a collection of objects.What are access modifiers?
Access modifiers determine if a method or a data variable can be accessed by another method in another class.Explain the impact of private constructor.
Private constructor prevents a class from being explicitly instantiated by callers.What is an exception?
An exception is an abnormal condition that arises in a code sequence at run timeWhat are ways to create threads?
There are two ways to create a thread:extend the java.lang.Thread class
implement the java.lang.Runnable interface
How can we stop a thread programmatically?
thread.stop;What are daemon threads?
Daemon threads are designed to run in background. An example of such thread is garbage collector thread.What are the different types of locks in JDBC?
There are four types of major locks in JDBC:Exclusive locks
Shared locks
Read locks
Update locks
What are Servlets?
Servlets are program that run under web server environments.What are the different ways to maintain state between requests?
There are four different ways:URL rewriting
Cookies
Hidden fields
Sessions
No comments:
Post a Comment