<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7755322426755379694</id><updated>2011-04-21T13:34:58.417-07:00</updated><category term='java faqs 1'/><category term='java faqs 4'/><category term='java faqs 2'/><category term='java faqs 3'/><category term='java faqs 5'/><title type='text'>java FAQS</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://java7861.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7755322426755379694/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://java7861.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>prashanth</name><uri>http://www.blogger.com/profile/07711599595106933499</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7755322426755379694.post-8592574570017918234</id><published>2007-05-31T13:27:00.001-07:00</published><updated>2007-05-31T13:27:22.952-07:00</updated><title type='text'></title><content type='html'>&lt;p&gt;&lt;span style="font-size: 85%;"&gt;&lt;span style="font-size: 85%;"&gt;&lt;span style="font-size: 180%;"&gt;Download Free 320kbps Songs&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 100%;"&gt;&lt;span style="font-size: 130%;"&gt;&lt;a href="http://musicdoors.blogspot.com/"&gt;Free 320kbps Hindi And Telugu Songs Download&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 180%;"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 85%;"&gt;&lt;span style="font-size: 85%;"&gt;&lt;span style="font-size: 180%;"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;br /&gt;Earn Money Through SMS&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 130%;"&gt;&lt;a href="http://www.mginger.com/index.jsp?inviteId=194465"&gt;Sign Up Here&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7755322426755379694-8592574570017918234?l=java7861.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://java7861.blogspot.com/feeds/8592574570017918234/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7755322426755379694&amp;postID=8592574570017918234' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7755322426755379694/posts/default/8592574570017918234'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7755322426755379694/posts/default/8592574570017918234'/><link rel='alternate' type='text/html' href='http://java7861.blogspot.com/2007/05/download-free-320kbps-songs-free.html' title=''/><author><name>prashanth</name><uri>http://www.blogger.com/profile/07711599595106933499</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7755322426755379694.post-3439637389393824649</id><published>2007-05-29T10:46:00.000-07:00</published><updated>2007-05-29T10:53:49.167-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='java faqs 1'/><title type='text'>java faqs 1</title><content type='html'>&lt;p&gt; &lt;b class="for_questions_blue"&gt;What is Collection API ?&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;span class="answers"&gt;The Collection API is a set of classes and interfaces that  support operation on collections of objects. These classes and  interfaces are more flexible, more powerful, and more regular than the  vectors, arrays, and hashtables if effectively replaces.&lt;br /&gt;Example of classes: HashSet, HashMap, ArrayList, LinkedList, TreeSet and  TreeMap.&lt;br /&gt;Example of interfaces: Collection, Set, List and Map.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Is Iterator a Class or Interface? What is its use? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Answer: Iterator is an interface which is used to step through the  elements of a Collection. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is similarities/difference between an Abstract class and  Interface? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Differences are as follows:&lt;br /&gt;Interfaces provide a form of multiple inheritance. A class can extend  only one other class. Interfaces are limited to public methods and  constants with no implementation. Abstract classes can have a partial  implementation, protected parts, static methods, etc.&lt;br /&gt;A Class may implement several interfaces. But in case of abstract class,  a class may extend only one abstract class. Interfaces are slow as it  requires extra indirection to to find corresponding method in in the  actual class. Abstract classes are fast.&lt;br /&gt;Similarities:&lt;br /&gt;&lt;br /&gt;Neither Abstract classes or Interface can be instantiated. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;How to define an Abstract class?&lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;A class containing abstract method is called Abstract class. An Abstract  class can't be instantiated.&lt;br /&gt;Example of Abstract class:&lt;br /&gt;abstract class testAbstractClass {&lt;br /&gt;protected String myString;&lt;br /&gt;public String getMyString() {&lt;br /&gt;return myString;&lt;br /&gt;}&lt;br /&gt;public abstract string anyAbstractFunction();&lt;br /&gt;} &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How to define an Interface? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;In Java Interface defines the methods but does not implement them.  Interface can include constants. A class that implements the interfaces  is bound to implement all the methods defined in Interface.&lt;br /&gt;Emaple of Interface:&lt;br /&gt;&lt;br /&gt;public interface sampleInterface {&lt;br /&gt;public void functionOne();&lt;br /&gt;&lt;br /&gt;public long CONSTANT_ONE = 1000;&lt;br /&gt;&lt;/span&gt;}&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;If a class is located in a package, what do you need to change in the  OS environment to be able to use it? &lt;/b&gt;&lt;/p&gt; &lt;!--webbot bot="Include" U-Include="_private/tbl_gglapck.htm" TAG="BODY" startspan --&gt;&lt;!--webbot bot="Include" i-checksum="45405" endspan --&gt;&lt;p&gt; &lt;span class="answers"&gt;You need to add a directory or a jar file that contains the package  directories to the CLASSPATH environment variable. Let's say a class  Employee belongs to a package com.xyz.hr; and is located in the file  c:\dev\com\xyz\hr\Employee.java. In this case, you'd need to add c:\dev  to the variable CLASSPATH. If this class contains the method main(), you  could test it from a command prompt window as follows:&lt;br /&gt;c:\&gt;java com.xyz.hr.Employee &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How many methods in the Serializable interface? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;There is no method in the Serializable interface. The Serializable  interface acts as a marker, telling the object serialization tools that  your class is serializable. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How many methods in the Externalizable interface? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;There are two methods in the Externalizable interface. You have to  implement these two methods in order to make your class externalizable.  These two methods are readExternal() and writeExternal(). &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between Serializalble and Externalizable  interface? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;When you use Serializable interface, your class is serialized  automatically by default. But you can override writeObject() and  readObject() two methods to control more complex object serailization  process. When you use Externalizable interface, you have a complete  control over your class's serialization process.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is a transient variable? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A transient variable is a variable that may not be serialized. If you  don't want some field to be serialized, you can mark that field  transient or static.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Which containers use a border layout as their default layout?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The Window, Frame and Dialog classes use a border layout as their  default layout.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;How are Observer and Observable used?  &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;Objects that subclass the Observable class maintain a list of observers.  When an Observable object is updated, it invokes the update() method of  each of its observers to notify the observers that it has changed state.  The Observer interface is implemented by objects that observe Observable  objects.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 255);"&gt;&lt;u&gt;&lt;span class="for_questions_blue"&gt;What  is Java?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/u&gt;&lt;/span&gt;&lt;/b&gt;&lt;span class="answers"&gt;Java is an object-oriented programming language developed initially by  James Gosling and colleagues at Sun Microsystems. The language,  initially called Oak (named after the oak trees outside Gosling's  office), was intended to replace C++, although the feature set better  resembles that of Objective C. Java should not be confused with  JavaScript, which shares only the name and a similar C-like syntax. Sun  Microsystems currently maintains and updates Java regularly. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;span style="color: rgb(0, 0, 255);"&gt;&lt;u&gt; &lt;b&gt;What does a well-written OO program look like? &lt;/b&gt;&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="answers"&gt;A well-written OO program exhibits recurring structures that promote  abstraction, flexibility, modularity and elegance. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;&lt;span style="color: rgb(0, 0, 255);"&gt;&lt;u&gt;Can you have virtual functions in Java?&lt;/u&gt;&lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Yes, all functions in Java are virtual by default. This is actually a  pseudo trick question because the word "virtual" is not part of the  naming convention in Java (as it is in C++, C-sharp and VB.NET), so this  would be a foreign concept for someone who has only coded in Java.  Virtual functions or virtual methods are functions or methods that will  be redefined in derived classes. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;span style="color: rgb(0, 0, 255);"&gt;&lt;u&gt; &lt;b&gt;Jack developed a program by using a Map container to hold key/value  pairs. He wanted to make a change to the map. He decided to make a clone  of the map in order to save the original data on side. What do you think  of it? ? &lt;/b&gt;&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="answers"&gt;If Jack made a clone of the map, any changes to the clone or the  original map would be seen on both maps, because the clone of Map is a  shallow copy. So Jack made a wrong decision. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue" style="color: rgb(0, 0, 255);"&gt;&lt;u&gt; &lt;b&gt;What is more advisable to create a thread, by implementing a Runnable  interface or by extending Thread class? &lt;/b&gt;&lt;/u&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;Strategically speaking, threads created by implementing Runnable  interface are more advisable. If you create a thread by extending a  thread class, you cannot extend any other class. If you create a thread  by implementing Runnable interface, you save a space for your class to  extend another class now or in future. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue" style="color: rgb(0, 0, 255);"&gt;&lt;u&gt; &lt;b&gt;What is NullPointerException and how to handle it? &lt;/b&gt;&lt;/u&gt;&lt;/span&gt; &lt;/p&gt; &lt;!--webbot bot="Include" U-Include="../_private/tble_firefox.htm" TAG="BODY" startspan --&gt;&lt;!--webbot bot="Include" i-checksum="47638" endspan --&gt;&lt;p&gt; &lt;span class="answers"&gt;When an object is not initialized, the default value is null. When the  following things happen, the NullPointerException is thrown:&lt;br /&gt;--Calling the instance method of a null object.&lt;br /&gt;--Accessing or modifying the field of a null object.&lt;br /&gt;--Taking the length of a null as if it were an array.&lt;br /&gt;--Accessing or modifying the slots of null as if it were an array.&lt;br /&gt;--Throwing null as if it were a Throwable value.&lt;br /&gt;The NullPointerException is a runtime exception. The best practice is to  catch such exception even if it is not required by language design.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue" style="color: rgb(0, 0, 255);"&gt;&lt;u&gt; &lt;b&gt;An application needs to load a library before it starts to run, how  to code?&lt;/b&gt;&lt;/u&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;One option is to use a static block to load a library before anything is  called. For example,&lt;br /&gt;class Test {&lt;br /&gt;static {&lt;br /&gt;System.loadLibrary("path-to-library-file");&lt;br /&gt;&lt;/span&gt;}&lt;span class="answers"&gt;&lt;br /&gt;....&lt;br /&gt;}&lt;br /&gt;When you call new Test(), the static block will be called first before  any initialization happens. Note that the static block position may  matter. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;&lt;span style="color: rgb(0, 0, 255);"&gt;&lt;u&gt;How could Java classes direct program messages to the system console,  but error messages, say to a file?&lt;/u&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The class System has a variable out that represents the standard output,  and the variable err that represents the standard error device. By  default, they both point at the system console. This how the standard  output could be re-directed:&lt;br /&gt;Stream st = new Stream(new FileOutputStream("output.txt"));  System.setErr(st); System.setOut(st);&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue" style="color: rgb(0, 0, 255);"&gt;&lt;u&gt; &lt;b&gt;What's the difference between an interface and an abstract class? &lt;/b&gt; &lt;/u&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;An abstract class may contain code in method bodies, which is not  allowed in an interface. With abstract classes, you have to inherit your  class from it and Java does not allow multiple inheritance. On the other  hand, you can implement multiple interfaces in your class. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue" style="color: rgb(0, 0, 255);"&gt;&lt;u&gt; &lt;b&gt;Name the containers which uses Border Layout as their default layout? &lt;/b&gt;&lt;/u&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;Containers which uses Border Layout as their default are: window, Frame  and Dialog classes. &lt;/span&gt;&lt;/p&gt; &lt;span class="for_questions_blue" style="color: rgb(0, 0, 255);"&gt;&lt;u&gt; &lt;b&gt;What do you understand by Synchronization? &lt;/b&gt;&lt;/u&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;Synchronization is a process of controlling the access of shared  resources by the multiple threads in such a manner that only one thread  can access one resource at a time. In non synchronized multithreaded  application, it is possible for one thread to modify a shared object  while another thread is in the process of using or updating the object's  value.&lt;br /&gt;Synchronization prevents such type of data corruption.&lt;br /&gt;E.g. Synchronizing a function:&lt;br /&gt;public synchronized void Method1 () {&lt;br /&gt;// Appropriate method-related code.&lt;br /&gt;&lt;/span&gt;}&lt;span class="answers"&gt;&lt;br /&gt;E.g. Synchronizing a block of code inside a function:&lt;br /&gt;public myFunction (){&lt;br /&gt;synchronized (this) {&lt;br /&gt;// Synchronized code here.&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;p&gt; &lt;b&gt;&lt;span class="for_questions_blue"&gt;What is synchronization and why is it  important?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;span class="answers"&gt;With respect to multithreading, synchronization is the capability to  control the access of multiple threads to shared resources. Without  synchronization, it is possible for one thread to modify a shared object  while another thread is in the process of using or updating that  object's value. This often causes dirty data and leads to significant  errors. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are synchronized methods and synchronized statements? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Synchronized methods are methods that are used to control access to a  method or an object. A thread only executes a synchronized method after  it has acquired the lock for the method's object or class. Synchronized  statements are similar to synchronized methods. A synchronized statement  can only be executed after a thread has acquired the lock for the object  or class referenced in the synchronized statement. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are three ways in which a thread can enter the waiting state? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A thread can enter the waiting state by invoking its sleep() method, by  blocking on IO, by unsuccessfully attempting to acquire an object's  lock, or by invoking an object's wait() method. It can also enter the  waiting state by invoking its (deprecated) suspend() method. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can a lock be acquired on a class? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Yes, a lock can be acquired on a class. This lock is acquired on the  class's Class object. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What's new with the stop(), suspend() and resume() methods in JDK  1.2? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The stop(), suspend() and resume() methods have been deprecated in JDK  1.2. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the preferred size of a component? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The preferred size of a component is the minimum component size that  will allow the component to display normally. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What's the difference between J2SDK 1.5 and J2SDK 5.0? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;There's no difference, Sun Microsystems just re-branded this version. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What would you use to compare two String variables - the operator ==  or the method equals()? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;I'd use the method equals() to compare the values of the Strings and the  == to check if two variables point at the same instance of a String  object.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is thread?&lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;A thread is an independent path of execution in a system. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is multi-threading? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Multi-threading means various threads that run in a system. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How does multi-threading take place on a computer with a single CPU? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The operating system's task scheduler allocates execution time to  multiple tasks. By quickly switching between executing tasks, it creates  the impression that tasks execute sequentially. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How to create a thread in a program? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;You have two ways to do so. First, making your class "extends" Thread  class. Second, making your class "implements" Runnable interface. Put  jobs in a run() method and call start() method to start the thread.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can Java object be locked down for exclusive use by a given thread? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Yes. You can lock an object by putting it in a "synchronized" block. The  locked object is inaccessible to any thread other than the one that  explicitly claimed it. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Can each Java object keep track of all the threads that want to  exclusively access to it?&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Yes. Use Thread.currentThread() method to track the accessing thread. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Does it matter in what order catch statements for  FileNotFoundException and IOExceptipon are written? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Yes, it does. The FileNoFoundException is inherited from the IOException.  Exception's subclasses have to be caught first. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What invokes a thread's run() method? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;After a thread is started, via its start() method of the Thread class,  the JVM invokes the thread's run() method when the thread is initially  executed.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt; &lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the purpose of the wait(),  notify(), and notifyAll() methods?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;span class="answers"&gt;The wait(),notify(), and notifyAll() methods are used to provide an  efficient way for threads to communicate each other. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are the high-level thread states? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The high-level thread states are ready, running, waiting, and dead.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between yielding and sleeping? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;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. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What happens when a thread cannot acquire a lock on an object? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;If a thread attempts to execute a synchronized method or synchronized  statement and is unable to acquire an object's lock, it enters the  waiting state until the lock becomes available. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between Process and  Thread? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A process can contain multiple threads. In most multithreading operating  systems, a process gets its own memory address space; a thread doesn't. Threads  typically share the heap belonging to their parent process. For instance, a JVM  runs in a single process in the host O/S. Threads in the JVM share the heap  belonging to that process; that's why several threads may access the same  object. Typically, even though they share a common heap, threads have their own  stack space. This is how one thread's invocation of a method is kept separate  from another's. This is all a gross oversimplification, but it's accurate enough  at a high level. Lots of details differ between operating systems. Process vs.  Thread A program vs. similar to a sequential program an run on its own vs.  Cannot run on its own Unit of allocation vs. Unit of execution Have its own  memory space vs. Share with others Each process has one or more threads vs. Each  thread belongs to one process Expensive, need to context switch vs. Cheap, can  use process memory and may not need to context switch More secure. One process  cannot corrupt another process vs. Less secure. A thread can write the memory  used by another thread &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can an inner class declared inside of a method  access local variables of this method? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;It's possible if these variables are final. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What can go wrong if you replace &amp;emp;&amp;emp;  with &amp;emp; in the following code: String a=null; if (a!=null &amp;&amp;amp; a.length()&gt;10)  {...} &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A single ampersand here would lead to a NullPointerException.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the Vector class? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The Vector class provides the capability to implement a  growable array of objects &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What modifiers may be used with an inner class  that is a member of an outer class? &lt;/b&gt;&lt;br /&gt;&lt;span class="answers"&gt;A (non-local) inner class may be declared as  public, protected, private, static, final, or abstract. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;If a method is declared as protected, where may  the method be accessed? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A protected method may only be accessed by classes or interfaces of the  same package or by subclasses of the class in which it is declared. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is an Iterator interface? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The Iterator interface is used to step through the elements of a  Collection. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How many bits are used to represent Unicode,  ASCII, UTF-16, and UTF-8 characters? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Unicode requires 16 bits and ASCII require 7 bits. Although the ASCII  character set uses only 7 bits, it is usually represented as 8 bits. UTF-8  represents characters using 8, 16, and 18 bit patterns. UTF-16 uses 16-bit and  larger bit patterns. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What's the main difference between a Vector and  an ArrayList? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Java Vector class is internally synchronized and ArrayList is not. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are wrapped classes? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Wrapped classes are classes that allow primitive types to be accessed as  objects. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Does garbage collection guarantee that a  program will not run out of memory? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;No, it doesn't. 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. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between preemptive  scheduling and time slicing? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;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.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Name Component subclasses that support painting ?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;The Canvas, Frame, Panel, and Applet classes support painting.  &lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is a native method? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;A native method is a method that is implemented in a language other than  Java. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How can you write a loop indefinitely? &lt;/b&gt;&lt;br /&gt;for(;;)--for loop; while(true)--always true, etc. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can an anonymous class be declared as implementing an interface and  extending a class? &lt;/b&gt;&lt;br /&gt;An anonymous class may implement an interface or extend a superclass,  but may not be declared to do both. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the purpose of finalization? &lt;/b&gt;&lt;br /&gt;The purpose of finalization is to give an unreachable object the  opportunity to perform any cleanup processing before the object is  garbage collected. &lt;/p&gt;  &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;When should the method invokeLater()be used?&lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;This method is used to ensure that Swing components are updated through  the event-dispatching thread. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How many methods in Object class? &lt;/b&gt;&lt;br /&gt;This question is not asked to test your memory. It tests you how well  you know Java. Ten in total.&lt;br /&gt;clone()&lt;br /&gt;equals() &amp; hashcode()&lt;br /&gt;getClass()&lt;br /&gt;finalize()&lt;br /&gt;wait() &amp;amp; notify()&lt;br /&gt;toString() &lt;/p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;How does Java handle integer overflows and underflows? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;It uses low order bytes of the result that can fit into the size of the  type allowed by the operation.&lt;/span&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;What is the numeric promotion? &lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;Numeric promotion is used with both unary and binary bitwise operators.  This means that byte, char, and short values are converted to int values  before a bitwise operator is applied.&lt;br /&gt;If a binary bitwise operator has one long operand, the other operand is  converted to a long value.&lt;br /&gt;The type of the result of a bitwise operation is the type to which the  operands have been promoted. For example:&lt;br /&gt;short a = 5;&lt;br /&gt;byte b = 10;&lt;br /&gt;long c = 15;&lt;br /&gt;The type of the result of (a+b) is int, not short or byte. The type of  the result of (a+c) or (b+c) is long. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Is the numeric promotion available in other platform? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Yes. Because Java is implemented using a platform-independent virtual  machine, bitwise operations always yield the same result, even when run  on machines that use radically different CPUs. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between the Boolean &amp; operator and the &amp;amp;&amp;  operator? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;If an expression involving the Boolean &amp;amp; operator is evaluated, both  operands are evaluated. Then the &amp; operator is applied to the operand.  When an expression involving the &amp;amp;&amp; operator is evaluated, the first  operand is evaluated. If the first operand returns a value of true then  the second operand is evaluated. The &amp;amp;&amp; operator is then applied to the  first and second operands. If the first operand evaluates to false, the  evaluation of the second operand is skipped.&lt;br /&gt;Operator &amp;amp; has no chance to skip both sides evaluation and &amp;&amp;amp; operator  does. If asked why, give details as above. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;When is the ArithmeticException throwQuestion: What is the  GregorianCalendar class?&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The GregorianCalendar provides support for traditional Western  calendars. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the SimpleTimeZone class? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The SimpleTimeZone class provides support for a Gregorian calendar. &lt;/span&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How can a subclass call a method or a constructor defined in a superclass? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Use the following syntax: super.myMethod(); To call a constructor of the  superclass, just write super(); in the first line of the subclass's  constructor. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the Properties class? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The properties class is a subclass of Hashtable that can be read from or  written to a stream. It also provides the capability to specify a set of  default values to be used. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the purpose of the Runtime class? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The purpose of the Runtime class is to provide access to the Java  runtime system.&lt;/span&gt;&lt;/p&gt; &lt;span style="font-weight: 400;"&gt;&lt;span style="font-size:100%;"&gt;&lt;script type="text/javascript"&gt;&lt;!-- google_ad_client = "pub-7003540323320880"; google_ad_width = 336; google_ad_height = 280; google_ad_format = "336x280_as"; google_ad_type = "text";  google_ad_channel = "6397297927"; google_color_border = "FFFFFF"; google_color_bg = "FFFFFF"; google_color_link = "0000FF"; google_color_text = "000000"; google_color_url = "191919"; //--&gt; &lt;/script&gt;&lt;script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;&lt;/script&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the purpose of the System class?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;The purpose of the System class is to provide access to system  resources. &lt;/span&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is the  purpose of the finally clause of a try-catch-finally statement? &lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;The finally clause is used to provide the capability to execute code no  matter whether or not an exception is thrown or caught. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the Locale class? &lt;/b&gt;&lt;br /&gt;The Locale class is used to tailor program output to the conventions of  a particular geographic, political, or cultural region. &lt;/p&gt;  &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is an abstract method? &lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;An abstract method is a method whose implementation is deferred to a  subclass. Or, a method that has no implementation. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between interface and abstract class? &lt;/b&gt;&lt;br /&gt;interface contains methods that must be abstract; abstract class may  contain concrete methods. interface contains variables that must be  static and final; abstract class may contain non-final and final  variables. members in an interface are public by default, abstract class  may contain non-public members. interface is used to "implements";  whereas abstract class is used to "extends". interface can be used to  achieve multiple inheritance; abstract class can be used as a single  inheritance. interface can "extends" another interface, abstract class  can "extends" another class and "implements" multiple interfaces.  interface is absolutely abstract; abstract class can be invoked if a  main() exists. interface is more flexible than abstract class because  one class can only "extends" one super class, but "implements" multiple  interfaces. If given a choice, use interface instead of abstract class. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is a static method? &lt;/b&gt;&lt;br /&gt;A static method is a method that belongs to the class rather than any  object of the class and doesn't apply to an object or even require that  any objects of the class have been instantiated. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is a protected method? &lt;/b&gt;&lt;br /&gt;A protected method is a method that can be accessed by any method in its  package and inherited by any subclass of its class. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between a static and a non-static inner class? &lt;/b&gt;&lt;br /&gt;A non-static inner class may have object instances that are associated  with instances of the class's outer class. A static inner class does not  have any object instances. &lt;/p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;What is an object's lock and which object's have locks? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;An object's lock is a mechanism that is used by multiple threads to  obtain synchronized access to the object. A thread may execute a  synchronized method of an object only after it has acquired the object's  lock. All objects and classes have locks. A class's lock is acquired on  the class's Class object.&lt;/span&gt;&lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;When can an object reference be cast to an interface reference? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;An object reference can be cast to an interface reference when the  object implements the referenced interface. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between a Window and a Frame? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The Frame class extends Window to define a main application window that  can have a menu bar. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between a Window and a Frame? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Heavy weight components like Abstract Window Toolkit (AWT), depend on  the local windowing toolkit. For example, java.awt.Button is a heavy  weight component, when it is running on the Java platform for Unix  platform, it maps to a real Motif button. In this relationship, the  Motif button is called the peer to the java.awt.Button. If you create  two Buttons, two peers and hence two Motif Buttons are also created. The  Java platform communicates with the Motif Buttons using the Java Native  Interface. For each and every component added to the application, there  is an additional overhead tied to the local windowing system, which is  why these components are called heavy weight. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Which package has light weight components? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;javax.Swing package. All components in Swing, except JApplet, JDialog,  JFrame and JWindow are lightweight components.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What are peerless components?  &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;The peerless components are called light weight components.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is the difference between the Font and FontMetrics classes?&lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;The FontMetrics class is used to define implementation-specific  properties, such as ascent and descent, of a Font object&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the difference between the  Reader/Writer class hierarchy and the InputStream/OutputStream class  hierarchy?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;span class="answers"&gt;The Reader/Writer class hierarchy is character-oriented, and the  InputStream/OutputStream class hierarchy is byte-oriented. &lt;/span&gt; &lt;/p&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;What classes of exceptions may be caught by  a catch clause? &lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;A catch clause can catch any exception that may be assigned to the  Throwable type. This includes the Error and Exception types. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between throw and throws keywords? &lt;/b&gt;&lt;br /&gt;The throw keyword denotes a statement that causes an exception to be  initiated. It takes the Exception object to be thrown as argument. The  exception will be caught by an immediately encompassing try-catch  construction or propagated further up the calling hierarchy.&lt;br /&gt;The throws keyword is a modifier of a method that designates that  exceptions may come out of the method, either by virtue of the method  throwing the exception itself or because it fails to catch such  exceptions that a method it calls may throw.&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;If a class is declared without any access modifiers, where may the  class be accessed? &lt;/b&gt;&lt;br /&gt;A class that is declared without any access modifiers is said to have  package or friendly access. This means that the class can only be  accessed by other classes and interfaces that are defined within the  same package. &lt;/p&gt;  &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is the Map interface?&lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;The Map interface replaces the JDK 1.1 Dictionary class and is used  associate keys with values. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Does a class inherit the constructors of its super class? &lt;/b&gt;&lt;br /&gt;A class does not inherit constructors from any of its superclasses. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Name primitive Java types. &lt;/b&gt;&lt;br /&gt;The primitive types are byte, char, short, int, long, float, double, and  Boolean. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Which class should you use to obtain design information about an  object? &lt;/b&gt;&lt;br /&gt;The Class class is used to obtain information about an object's design. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How can a GUI component handle its own events? &lt;/b&gt;&lt;br /&gt;A component can handle its own events by implementing the required  event-listener interface and adding itself as its own event listener. &lt;/p&gt;  &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;How are the elements of a GridBagLayout organized?&lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;The elements of a GridBagLayout are organized according to a grid.  However, the elements are of different sizes and may occupy more than  one row or column of the grid. In addition, the rows and columns may  have different sizes. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What advantage do Java's layout managers provide over traditional  windowing systems? &lt;/b&gt;&lt;br /&gt;Java uses layout managers to lay out components in a consistent manner  across all windowing platforms. Since Java's layout managers aren't tied  to absolute sizing and positioning, they are able to accommodate  platform-specific differences among windowing systems. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are the problems faced by Java programmers who don't use layout  managers? &lt;/b&gt;&lt;br /&gt;Without layout managers, Java programmers are faced with determining how  their GUI will be displayed across multiple windowing systems and  finding a common sizing and positioning that will work within the  constraints imposed by each windowing system.&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between static and non-static variables? &lt;/b&gt;&lt;br /&gt;A static variable is associated with the class as a whole rather than  with specific instances of a class. Non-static variables take on unique  values with each object instance. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between the paint() and repaint() methods? &lt;/b&gt;&lt;br /&gt;The paint() method supports painting via a Graphics object. The  repaint() method is used to cause paint() to be invoked by the AWT  painting thread. &lt;/p&gt;  &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is the purpose of the File class? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;The File class is used to create objects that provide access to the  files and directories of a local file system.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Why would you use a synchronized block vs. synchronized method? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Synchronized blocks place locks for shorter periods than synchronized  methods.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What restrictions are placed on method  overriding?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;Overridden methods must have the same name, argument list, and return  type. The overriding method may not limit the access of the method it  overrides. The overriding method may not throw any exceptions that may  not be thrown by the overridden method. &lt;/span&gt; &lt;/p&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;What is casting? &lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;There are two types of casting, casting between primitive numeric types  and casting between object references. Casting between numeric types is  used to convert larger values, such as double values, to smaller values,  such as byte values. Casting between object references is used to refer  to an object by a compatible class, interface, or array type reference. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Explain the usage of the keyword transient? &lt;/b&gt;&lt;br /&gt;This keyword indicates that the value of this member variable does not  have to be serialized with the object. When the class will be  de-serialized, this variable will be initialized with a default value of  its data type (i.e. zero for integers). &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What class allows you to read objects directly from a stream? &lt;/b&gt;&lt;br /&gt;The ObjectInputStream class supports the reading of objects from input  streams. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How are this() and super() used with constructors? &lt;/b&gt;&lt;br /&gt;this() is used to invoke a constructor of the same class. super() is  used to invoke a superclass constructor. &lt;/p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;How is it possible for two String objects with identical values not  to be equal under the == operator? How are this() and super() used with  constructors? &lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;The == operator compares two objects to determine if they are the same  objects in memory. It is possible for two String objects to have the  same value, but located in different areas of memory.&lt;/span&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;What is an IO filter? &lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;An IO filter is an object that reads from one stream and writes to  another, usually altering the data in some way as it is passed from one  stream to another. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the Set interface? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The Set interface provides methods for accessing the elements of a  finite mathematical set. Sets do not allow duplicate elements. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How can you force garbage collection? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;You can't force GC, but could request it by calling System.gc(). JVM  does not guarantee that GC will be started immediately. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the purpose of the enableEvents() method? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The enableEvents() method is used to enable an event for a particular  object. Normally, an event is enabled when a listener is added to an  object for a particular event. The enableEvents() method is used by  objects that handle events by overriding their event-dispatch methods. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between the File and RandomAccessFile classes? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The File class encapsulates the files and directories of the local file  system. The RandomAccessFile class provides the methods needed to  directly access data contained in any part of a file. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What interface must an object implement before it can be written to a  stream as an object? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;An object must implement the Serializable or Externalizable interface  before it can be written to a stream as an object.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the ResourceBundle class? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The ResourceBundle class is used to store locale-specific resources that  can be loaded by a program to tailor the program's appearance to the  particular locale in which it is being run. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How do you know if an explicit object casting is needed? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;If you assign a superclass object to a variable of a subclass's data  type, you need to do explicit casting. For example:&lt;br /&gt;Object a; Customer b; b = (Customer) a;&lt;br /&gt;When you assign a subclass to a variable having a supeclass type, the  casting is performed automatically. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is a Java package and how is it used? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A Java package is a naming context for classes and interfaces. A package  is used to create a separate name space for groups of classes and  interfaces. Packages are also used to organize related classes and  interfaces into a single API unit and to control accessibility to these  classes and interfaces.&lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;How do you restrict a user to cut and paste from the html page? &lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;Using Servlet or client side scripts to lock keyboard keys. It is one of  solutions.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;br /&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;span style="font-weight: 400;"&gt;&lt;span style="font-size:100%;"&gt;&lt;script type="text/javascript"&gt;&lt;!-- google_ad_client = "pub-7003540323320880"; google_ad_width = 336; google_ad_height = 280; google_ad_format = "336x280_as"; google_ad_type = "text";  google_ad_channel = "6397297927"; google_color_border = "FFFFFF"; google_color_bg = "FFFFFF"; google_color_link = "0000FF"; google_color_text = "000000"; google_color_url = "191919"; //--&gt; &lt;/script&gt;&lt;script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;&lt;/script&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7755322426755379694-3439637389393824649?l=java7861.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://java7861.blogspot.com/feeds/3439637389393824649/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7755322426755379694&amp;postID=3439637389393824649' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7755322426755379694/posts/default/3439637389393824649'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7755322426755379694/posts/default/3439637389393824649'/><link rel='alternate' type='text/html' href='http://java7861.blogspot.com/2007/05/java-faqs-1.html' title='java faqs 1'/><author><name>prashanth</name><uri>http://www.blogger.com/profile/07711599595106933499</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7755322426755379694.post-8173273839044111791</id><published>2007-05-29T10:41:00.000-07:00</published><updated>2007-05-29T10:45:34.870-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='java faqs 2'/><title type='text'>java faqs 2</title><content type='html'>&lt;b&gt;&lt;span class="for_questions_blue"&gt;What are the Object and Class classes used  for?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;The Object class is the highest-level class in the Java class hierarchy.  The Class class is used to represent the classes and interfaces that are  loaded by a Java program. &lt;/span&gt; &lt;p&gt;&lt;b&gt; &lt;span class="for_questions_blue"&gt;What is Serialization and deserialization ? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Serialization is the process of writing the state of an object to a byte  stream. Deserialization is the process of restoring these objects. &lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Explain the usage of Java packages.  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;This is a way to organize files when a project consists of multiple  modules. It also helps resolve naming conflicts when different packages  have classes with the same names. Packages access level also allows you  to protect data from being used by the non-authorized classes. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Does the code in finally block get executed if there is an exception  and a return statement in a catch block? &lt;/b&gt;&lt;br /&gt;If an exception occurs and there is a return statement in catch block,  the finally block is still executed. The finally block will not be  executed when the System.exit(1) statement is executed earlier or the  system shut down earlier or the memory is used up earlier before the  thread goes to finally block.&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Is Java a super set of JavaScript? &lt;/b&gt;&lt;br /&gt;No. They are completely different. Some syntax may be similar. &lt;/p&gt;  &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is a Container in a GUI?&lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;A Container contains and arranges other components (including other  containers) through the use of layout managers, which use specific  layout policies to determine where components should go as a function of  the size of the container. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How the object oriented approach helps us keep complexity of software  development under control? &lt;/b&gt;&lt;br /&gt;We can discuss such issue from the following aspects:&lt;br /&gt;Objects allow procedures to be encapsulated with their data to reduce  potential interference.&lt;br /&gt;Inheritance allows well-tested procedures to be reused and enables  changes to make once and have effect in all relevant places.&lt;br /&gt;The well-defined separations of interface and implementation allow  constraints to be imposed on inheriting classes while still allowing the  flexibility of overriding and overloading. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is polymorphism? &lt;/b&gt;&lt;br /&gt;Polymorphism means "having many forms". It allows methods (may be  variables) to be written that needn't be concerned about the specifics  of the objects they will be applied to. That is, the method can be  specified at a higher level of abstraction and can be counted on to work  even on objects of un-conceived classes.&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is design by contract? &lt;/b&gt;&lt;br /&gt;The design by contract specifies the obligations of a method to any  other methods that may use its services and also theirs to it. For  example, the preconditions specify what the method required to be true  when the method is called. Hence making sure that preconditions are.  Similarly, postconditions specify what must be true when the method is  finished, thus the called method has the responsibility of satisfying  the post conditions.&lt;br /&gt;In Java, the exception handling facilities support the use of design by  contract, especially in the case of checked exceptions. The assert  keyword can be used to make such contracts. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are use cases? &lt;/b&gt;&lt;br /&gt;A use case describes a situation that a program might encounter and what  behavior the program should exhibit in that circumstance. It is part of  the analysis of a program. The collection of use cases should, ideally,  anticipate all the standard circumstances and many of the extraordinary  circumstances possible so that the program will be robust. &lt;/p&gt;  &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is scalability and performance?&lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;Performance is a measure of "how fast can you perform this task." and  scalability describes how an application behaves as its workload and  available computing resources increase. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the benefit of subclass? &lt;/b&gt;&lt;br /&gt;Generally: The sub class inherits all the public methods and the  implementation.&lt;br /&gt;The sub class inherits all the protected methods and their  implementation.&lt;br /&gt;The sub class inherits all the default(non-access modifier) methods and  their implementation.&lt;br /&gt;The sub class also inherits all the public, protected and default member  variables from the super class.&lt;br /&gt;The constructors are not part of this inheritance model.&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How to add menushortcut to menu item? &lt;/b&gt;&lt;br /&gt;If you have a button instance called aboutButton, you may add menu short  cut by calling aboutButton.setMnemonic('A'), so the user may be able to  use Alt+A to click the button.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;In System.out.println(),what is System,out  and println,pls explain?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;System is a predefined final class,out is a PrintStream object acting as  a field member and println is a built-in overloaded method in the out  object. &lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;Can you write a Java class that could be used both as an applet as  well as an application? &lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;A. Yes. Add a main() method to the applet.&lt;/span&gt;&lt;/p&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;Can you make an instance of an abstract class? For example -  java.util.Calender is an abstract class with a method getInstance()  which returns an instance of the Calender class. &lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;No! You cannot make an instance of an abstract class. An abstract class  has to be sub-classed. If you have an abstract class and you want to use  a method which has been implemented, you may need to subclass that  abstract class, instantiate your subclass and then call that method.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the output of x &gt; y? a:b = p*q when x=1,y=2,p=3,q=4? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;When this kind of question has been asked, find the problems you think  is necessary to ask back before you give an answer. Ask if variables a  and b have been declared or initialized. If the answer is yes. You can  say that the syntax is wrong. If the statement is rewritten as: x &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between Swing and AWT components? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;AWT components are heavy-weight, whereas Swing components are  lightweight. Heavy weight components depend on the local windowing  toolkit. For example, java.awt.Button is a heavy weight component, when  it is running on the Java platform for Unix platform, it maps to a real  Motif button. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Why Java does not support pointers? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Because pointers are unsafe. Java uses reference types to hide pointers  and programmers feel easier to deal with reference types without  pointers. This is why Java and C-sharp shine. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Parsers? DOM vs SAX parser &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Parsers are fundamental xml components, a bridge between XML documents  and applications that process that XML. The parser is responsible for  handling xml syntax, checking the contents of the document against  constraints established in a DTD or Schema.&lt;br /&gt;DOM&lt;br /&gt;1. Tree of nodes&lt;br /&gt;2. Memory: Occupies more memory, preffered for small XML documents&lt;br /&gt;3. Slower at runtime&lt;br /&gt;4. Stored as objects&lt;br /&gt;5. Programmatically easy&lt;br /&gt;6. Ease of navigation&lt;br /&gt;SAX&lt;br /&gt;1. Sequence of events&lt;br /&gt;2. Doesn't use any memory preferred for large documents&lt;br /&gt;3. Faster at runtime&lt;br /&gt;4. Objects are to be created&lt;br /&gt;5. Need to write code for creating objects&lt;br /&gt;6. Backward navigation is not possible as it sequentially processes the  document&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can you declare a class as private?  &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Yes, we can declare a private class as an inner class. For example,&lt;br /&gt;&lt;br /&gt;class MyPrivate {&lt;br /&gt;private static class MyKey {&lt;br /&gt;String key = "12345";&lt;br /&gt;&lt;/span&gt;}&lt;span class="answers"&gt;&lt;br /&gt;public static void main(String[] args) {&lt;br /&gt;System.out.println(new MyKey().key);//prints 12345&lt;br /&gt;&lt;/span&gt;}&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt;}&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between shallow copy and deep copy? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Shallow copy shares the same reference with the original object like  cloning, whereas the deep copy get a duplicate instance of the original  object. If the shallow copy has been changed, the original object will  be reflected and vice versa. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;Can one create a method which gets a String and modifies it? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;No. In Java, Strings are constant or immutable; their values cannot be  changed after they are created, but they can be shared. Once you change  a string, you actually create a new object. For example:&lt;br /&gt;String s = "abc"; //create a new String object representing "abc"&lt;br /&gt;s = s.toUpperCase(); //create another object representing "ABC" &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Why is multiple inheritance not possible in Java? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;It depends on how you understand "inheritance". Java can only "extends"  one super class, but can "implements" many interfaces; that doesn't mean  the multiple inheritance is not possible. You may use interfaces to make  inheritance work for you. Or you may need to work around. For example,  if you cannot get a feature from a class because your class has a super  class already, you may get that class's feature by declaring it as a  member field or getting an instance of that class. So the answer is that  multiple inheritance in Java is possible. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What's the difference between constructors and other methods? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Constructors must have the same name as the class and can not return a  value. They are only called once while regular methods could be called  many times.&lt;/span&gt;&lt;/p&gt; &lt;span style="font-weight: 400;"&gt;&lt;span style="font-size:100%;"&gt;&lt;script type="text/javascript"&gt;&lt;!-- google_ad_client = "pub-7003540323320880"; google_ad_width = 336; google_ad_height = 280; google_ad_format = "336x280_as"; google_ad_type = "text";  google_ad_channel = "6397297927"; google_color_border = "FFFFFF"; google_color_bg = "FFFFFF"; google_color_link = "0000FF"; google_color_text = "000000"; google_color_url = "191919"; //--&gt; &lt;/script&gt;&lt;script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;&lt;/script&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the relationship between  synchronized and volatile keyword?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;The JVM is guaranteed to treat reads and writes of data of 32 bits or  less as atomic.(Some JVM might treat reads and writes of data of 64 bits  or less as atomic in future) For long or double variable, programmers  should take care in multi-threading environment. Either put these  variables in a synchronized method or block, or declare them volatile. &lt;/span&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;This class (IncrementImpl) will be used by various threads  concurrently; can you see the inherent flaw(s)? How would you improve  it?&lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;public class IncrementImpl {&lt;br /&gt;private static int counter = 0;&lt;br /&gt;public synchronized void increment() {&lt;br /&gt;counter++;&lt;br /&gt;}&lt;br /&gt;public int getCounter() {&lt;br /&gt;return counter;&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;The counter is static variable which is shared by multiple instances of  this class. The increment() method is synchronized, but the getCounter()  should be synchronized too. Otherwise the Java run-time system will not  guarantee the data integrity and the race conditions will occur. The  famous producer/consumer example listed at Sun's thread tutorial site  will tell more.&lt;br /&gt;one of solutions&lt;br /&gt;public class IncrementImpl {&lt;br /&gt;private static int counter = 0;&lt;br /&gt;public synchronized void increment() {&lt;br /&gt;counter++;&lt;br /&gt;}&lt;br /&gt;public synchronized int getCounter() {&lt;br /&gt;return counter;&lt;br /&gt;}&lt;br /&gt;} &lt;/span&gt;&lt;/p&gt; &lt;b class="for_questions_blue"&gt;What are the drawbacks of inheritance? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Since inheritance inherits everything from the super class and  interface, it may make the subclass too clustering and sometimes  error-prone when dynamic overriding or dynamic overloading in some  situation. In addition, the inheritance may make peers hardly understand  your code if they don't know how your super-class acts and add learning  curve to the process of development.&lt;br /&gt;Usually, when you want to use a functionality of a class, you may use  subclass to inherit such function or use an instance of this class in  your class. Which is better, depends on your specification.&lt;/span&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;Is there any other way that you can achieve inheritance in Java? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;There are a couple of ways. As you know, the straight way is to  "extends" and/or "implements". The other way is to get an instance of  the class to achieve the inheritance. That means to make the  supposed-super-class be a field member. When you use an instance of the  class, actually you get every function available from this class, but  you may lose the dynamic features of OOP &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Two methods have key words static synchronized and synchronized  separately. What is the difference between them? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Both are synchronized methods. One is instance method, the other is  class method. Method with static modifier is a class method. That means  the method belongs to class itself and can be accessed directly with  class name and is also called Singleton design. The method without  static modifier is an instance method. That means the instance method  belongs to its object. Every instance of the class gets its own copy of  its instance method.&lt;br /&gt;When synchronized is used with a static method, a lock for the entire  class is obtained. When synchronized is used with a non-static method, a  lock for the particular object (that means instance) of the class is  obtained.&lt;br /&gt;Since both methods are synchronized methods, you are not asked to  explain what is a synchronized method. You are asked to tell the  difference between instance and class method. Of course, your  explanation to how synchronized keyword works doesn't hurt. And you may  use this opportunity to show your knowledge scope. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How do you create a read-only collection? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The Collections class has six methods to help out here:&lt;br /&gt;1. unmodifiableCollection(Collection c)&lt;br /&gt;2. unmodifiableList(List list)&lt;br /&gt;3. unmodifiableMap(Map m)&lt;br /&gt;4. unmodifiableSet(Set s)&lt;br /&gt;5. unmodifiableSortedMap(SortedMap m)&lt;br /&gt;6. unmodifiableSortedSet(SortedSet s)&lt;br /&gt;If you get an Iterator from one of these unmodifiable collections, when  you call remove(), it will throw an UnsupportedOperationException. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can a private method of a superclass be declared within a subclass? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Sure. A private field or method or inner class belongs to its declared  class and hides from its subclasses. There is no way for private stuff  to have a runtime overloading or overriding (polymorphism) features.  &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Why Java does not support multiple inheritance ? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;This is a classic question. Yes or No depends on how you look at Java.  If you focus on the syntax of "extends" and compare with C++, you may  answer 'No' and give explanation to support you. Or you may answer  'Yes'. Recommend you to say 'Yes'.&lt;br /&gt;Java DOES support multiple inheritance via interface implementation.  Some people may not think in this way. Give explanation to support your  point.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;span class="answers"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the difference between final,  finally and finalize?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;Short answer:&lt;br /&gt;final - declares constant&lt;br /&gt;finally - relates with exception handling&lt;br /&gt;finalize - helps in garbage collection&lt;br /&gt;If asked to give details, explain:&lt;br /&gt;final field, final method, final class&lt;br /&gt;try/finally, try/catch/finally&lt;br /&gt;protected void finalize() in Object class&lt;/span&gt;&lt;/p&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;What kind of security tools are available in J2SE 5.0? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;There are three tools that can be used to protect application working  within the scope of security policies set at remote sites.&lt;br /&gt;keytool -- used to manage keystores and certificates.&lt;br /&gt;jarsigner -- used to generate and verify JAR signatures.&lt;br /&gt;policytool -- used for managing policy files.&lt;br /&gt;There are three tools that help obtain, list and manage Kerberos  tickets.&lt;br /&gt;kinit -- used to obtain Kerberos V5 tickets.&lt;br /&gt;tklist -- used to list entries in credential cache and key tab.&lt;br /&gt;ktab -- used to help manage entries in the key table.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How to make an array copy from System? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;There is a method called arraycopy in the System class. You can do it:&lt;br /&gt;System.arraycopy(sourceArray, srcOffset, destinationArray, destOffset,  numOfElements2Copy);&lt;br /&gt;When you use this method, the destinationArray will be filled with the  elements of sourceArray at the length specified. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can we use System.arraycopy() method to copy the same array? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Yes, you can. The source and destination arrays can be the same if you  want to copy a subset of the array to another area within that array. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is shallow copy or shallow clone in array cloning? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Cloning an array invloves creating a new array of the same size and type  and copying all the old elements into the new array. But such copy is  called shallow copy or shallow clone because any changes to the object  would be reflected in both arrays. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;When is the ArrayStoreException thrown? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;When copying elements between different arrays, if the source or  destination arguments are not arrays or their types are not compatible,  an ArrayStoreException will be thrown. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How to check two arrays to see if contents have the same types and  contain the same elements? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;One of options is to use the equals() method of Arrays class.&lt;br /&gt;Arrays.equals(a, b);&lt;br /&gt;If the array types are different, a compile-time error will happen.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can you call one constructor from another if a class has multiple  constructors? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Yes. Use this() syntax.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are the different types of inner classes?&lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;There are four different types of inner classes in Java. They are:  a)Static member classes , a static member class has access to all static  methods of the parent, or top-level, class b) Member classes, the member  class is instance specific and has access to any and all methods and  members, even the parent's this reference c) Local classes, are declared  within a block of code and are visible only within that block, just as  any other method variable. d) Anonymous classes, is a local class that  has no name &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;In which case would you choose a static inner class?&lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Interesting one, static inner classes can access the outer class's  protected and private fields. This is both a positive and a negitive  point for us since we can, in essence, violate the encapsulation of the  outer class by mucking up the outer class's protected and private  fields. The only proper use of that capability is to write white-box  tests of the class -- since we can induce cases that might be very hard  to induce via normal black-box tests (which don't have access to the  internal state of the object). Second advantage,if I can say, is that,  we can this static concept to impose restriction on the inner class.  Again as discussed in earlier point, an Inner class has access to all  the public, private and protected members of the parent class. Suppose  you want to restrict the access even to inner class, how would you go  ahead? Making the inner class static enforces it to access only the  public static members of the outer class( Since, protected and private  members are not supposed to be static and that static members can access  only other static members). If it has to access any non-static member,  it has to create an instance of the outer class which leads to accessing  only public members.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is weak reference in Java &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A weak reference is one that does not prevent the referenced object from  being garbage collected. You might use them to manage a HashMap to look  up a cache of objects. A weak reference is a reference that does not  keep the object it refers to alive. A weak reference is not counted as a  reference in garbage collection. If the object is not referred to  elsewhere as well, it will be garbage collected.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;hat is the difference between final,  finally and finalize?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;final is used for making a class no-subclassable, and making a member  variable as a constant which cannot be modified. finally is usually used  to release all the resources utilized inside the try block. All the  resources present in the finalize method will be garbage collected  whenever GC is called. Though finally and finalize seem to be for a  similar task there is an interesting tweak here, usually I prefer  finally than finalize unless it is unavoidable. This is because the code  in finally block is guaranteed of execution irrespective of occurrence of  exception, while execution of finalize is not guarenteed.finalize method  is called by the garbage collector on an object when the garbage  collector determines that there are no more references to the object.  Presumably the garbage collector will, like its civil servant namesake,  visit the heap on a regular basis to clean up resources that are no  longer in use. Garbage collection exists to prevent programmers from  calling delete. This is a wonderful feature. For example, if you can't  call delete, then you can't accidentally call delete twice on the same  object. However, removing delete from the language is not the same thing  as automatically cleaning up. To add to it, Garbage collection might not  ever run. If garbage collection runs at all, and an object is no longer  referenced, then that object's finalize will run. Also, across multiple  objects, finalize order is not predictable. The correct approach to  resource cleanup in Java language programs does not rely on finalize.  Instead, you simply write explicit close methods for objects that wrap  native resources. If you take this approach, you must document that the  close method exists and when it should be called. Callers of the object  must then remember to call close when they are finished with a resource.&lt;/span&gt;&lt;/p&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;What's the difference between the methods sleep() and wait() &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;The code sleep(1000); puts thread aside for exactly one second. The code  wait(1000), causes a wait of up to one 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.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;The following statement prints true or false, why? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;byte[] a = { 1, 2, 3 };,&lt;br /&gt;byte[] b = (byte[]) a.clone();&lt;br /&gt;System.out.println(a == b);&lt;br /&gt;The false will be printed out. Because the two arrays have distinctive  memory addresses. Starting in Java 1.2, we can use  java.util.Arrays.equals(a, b) to compare whether two arrays have the  same contents. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Why do we need to use getSystemResource() and getSystemResources()  method to load resources? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Because we want to look for resources strictly from the system classpath,  These methods use the system ClassLoader to locate resources, which  gives you stricter control of the resources used by the application.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;ArithmeticException? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The ArithmeticException is thrown when integer is divided by zero or  taking the remainder of a number by zero. It is never thrown in  floating-point operations. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is a transient variable? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A transient variable is a variable that may not be serialized. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Which containers use a border Layout as their default layout? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The window, Frame and Dialog classes use a border layout as their  default layout. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Why do threads block on I/O? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Threads block on I/O (that is enters the waiting state) so that other  threads may execute while the I/O Operation is performed. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the output from System.out.println("Hello"+null);? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Hellonull &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is synchronization and why is it important? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;With respect to multithreading, synchronization is the capability to  control the access of multiple threads to shared resources. Without  synchronization, it is possible for one thread to modify a shared object  while another thread is in the process of using or updating that  object's value. This often leads to significant errors. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can a lock be acquired on a class? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Yes, a lock can be acquired on a class. This lock is acquired on the  class's Class object. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What's new with the stop(), suspend() and resume() methods in JDK  1.2? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The stop(), suspend() and resume() methods have been deprecated in JDK  1.2.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Is null a keyword? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The null value is not a keyword. &lt;/span&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the preferred size of a component? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The preferred size of a component is the minimum component size that  will allow the component to display normally.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What method is used to specify a  container's layout?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;The setLayout() method is used to specify a container's layout.&lt;/span&gt;&lt;/p&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;Which containers use a FlowLayout as their default layout? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;The Panel and Applet classes use the FlowLayout as their default layout. &lt;/span&gt;&lt;/p&gt; &lt;b class="for_questions_blue"&gt;What state does a thread enter when it terminates its processing? &lt;/b&gt;&lt;br /&gt;When a thread terminates its processing, it enters the dead state.   &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the Collections API? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The Collections API is a set of classes and interfaces that support  operations on collections of objects.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Which characters may be used as the second character of an  identifier, but not as the first character of an identifier? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The digits 0 through 9 may not be used as the first character of an  identifier but they may be used after the first character of an  identifier.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the List interface? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The List interface provides support for ordered collections of objects. &lt;/span&gt;&lt;/p&gt; &lt;b class="for_questions_blue"&gt;How does Java handle integer overflows and underflows? &lt;/b&gt;&lt;br /&gt;It uses those low order bytes of the result that can fit into the size  of the type allowed by the operation.&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;What is the Vector class? &lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;The Vector class provides the capability to implement a growable array  of objects &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What modifiers may be used with an inner class that is a member of an  outer class? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A (non-local) inner class may be declared as public, protected, private,  static, final, or abstract.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is an Iterator interface? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The Iterator interface is used to step through the elements of a  Collection.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the difference between the &gt;&gt; and &gt;&gt;&gt; operators?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The &gt;&gt; operator carries the sign bit when shifting right. The &gt;&gt;&gt;  zero-fills bits that have been shifted out.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Which method of the Component class is used to set the position and  size of a component? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;setBounds()  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;How many bits are used to represent Unicode, ASCII, UTF-16, and UTF-8  characters?&lt;/span&gt;&lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Unicode requires 16 bits and ASCII require 7 bits. Although the ASCII  character set uses only 7 bits, it is usually represented as 8 bits.  UTF-8 represents characters using 8, 16, and 18 bit patterns. UTF-16  uses 16-bit and larger bit patterns.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the difference between yielding and sleeping?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;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. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Which java.util classes and interfaces support event handling? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The EventObject class and the EventListener interface support event  processing. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Is sizeof a keyword? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The sizeof operator is not a keyword.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are wrapper classes? &lt;/b&gt;&lt;br /&gt;Wrapper classes are classes that allow primitive types to be accessed as  objects. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Does garbage collection guarantee that a program will not run out of  memory?&lt;/b&gt;&lt;br /&gt;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. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What restrictions are placed on the location of a package statement  within a source code file? &lt;/b&gt;&lt;br /&gt;A package statement must appear as the first line in a source code file  (excluding blank lines and comments).&lt;/p&gt;  &lt;span style="font-weight: 400;"&gt;&lt;span style="font-size:100%;"&gt;&lt;script type="text/javascript"&gt;&lt;!-- google_ad_client = "pub-7003540323320880"; google_ad_width = 336; google_ad_height = 280; google_ad_format = "336x280_as"; google_ad_type = "text";  google_ad_channel = "6397297927"; google_color_border = "FFFFFF"; google_color_bg = "FFFFFF"; google_color_link = "0000FF"; google_color_text = "000000"; google_color_url = "191919"; //--&gt; &lt;/script&gt; &lt;script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt; &lt;/script&gt;&lt;iframe name="google_ads_frame" src="http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-7003540323320880&amp;dt=1180460637421&amp;amp;lmt=1180149937&amp;prev_fmts=336x280_as&amp;amp;format=336x280_as&amp;output=html&amp;amp;correlator=1180460634218&amp;channel=6397297927&amp;amp;url=http%3A%2F%2Ftechpreparation.com%2Fcomputer-interview-questions%2Fjava-interview-questions-answers14.htm&amp;color_bg=FFFFFF&amp;amp;color_text=000000&amp;color_link=0000FF&amp;amp;color_url=191919&amp;color_border=FFFFFF&amp;amp;ad_type=text&amp;ref=http%3A%2F%2Ftechpreparation.com%2Fcomputer-interview-questions%2Fjava-interview-questions-answers13.htm&amp;amp;cc=42&amp;flash=9&amp;amp;u_h=768&amp;u_w=1024&amp;amp;u_ah=738&amp;u_aw=1024&amp;amp;u_cd=32&amp;u_tz=330&amp;amp;u_his=50&amp;u_java=true&amp;amp;u_nplug=23&amp;u_nmime=91" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" frameborder="0" height="280" scrolling="no" width="336"&gt;&lt;/iframe&gt;&lt;/span&gt;&lt;/span&gt;&lt;p&gt; &lt;/p&gt;&lt;br /&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Can an object's finalize() method be  invoked while it is reachable?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;An object's finalize() method cannot be invoked by the garbage collector  while the object is still reachable. However, an object's finalize()  method may be invoked by other objects.&lt;/span&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;What is the immediate superclass of the Applet class? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;Panel &lt;/span&gt;&lt;/p&gt; &lt;b class="for_questions_blue"&gt;What is the difference between preemptive scheduling and time  slicing? &lt;/b&gt;&lt;br /&gt;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.   &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Name three Component subclasses that support painting.  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The Canvas, Frame, Panel, and Applet classes support painting. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What value does readLine() return when it has reached the end of a  file? &lt;/b&gt;&lt;br /&gt;The readLine() method returns null when it has reached the end of a  file. &lt;/p&gt;&lt;b class="for_questions_blue"&gt;What is the immediate superclass of the Dialog class? &lt;/b&gt;&lt;br /&gt;Window.&lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is clipping? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;Clipping is the process of confining paint operations to a limited area  or shape.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is a native method? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A native method is a method that is implemented in a language other than  Java.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Can a for statement loop indefinitely?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Yes, a for statement can loop indefinitely. For example, consider the  following: for(;;) ;  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What are order of precedence and associativity, and how are they  used? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;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 &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;When a thread blocks on I/O, what state does it enter?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A thread enters the waiting state when it blocks on I/O.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;To what value is a variable of the String type automatically  initialized? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The default value of a String type is null.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the catch or declare rule for method declarations?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;If a checked exception may be thrown within the body of a method, the  method must either catch the exception or declare it in its throws  clause.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the difference between a MenuItem and a CheckboxMenuItem? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The CheckboxMenuItem class extends the MenuItem class to support a menu  item that may be checked or unchecked. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is a task's priority and how is it used in scheduling?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A task's priority is an integer value that identifies the relative order  in which it should be executed with respect to other tasks. The  scheduler attempts to schedule higher priority tasks before lower  priority tasks.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What class is the top of the AWT event hierarchy?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The java.awt.AWTEvent class is the highest-level class in the AWT  event-class hierarchy.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;When a thread is created and started, what is its initial state? &lt;/b&gt;&lt;br /&gt;A thread is in the ready state after it has been created and started.&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can an anonymous class be declared as implementing an interface and  extending a class? &lt;/b&gt;&lt;br /&gt;An anonymous class may implement an interface or extend a superclass,  but may not be declared to do both.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the range of the short type?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;The range of the short type is -(2^15) to 2^15 - 1.  &lt;/span&gt; &lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;What is the range of the char type? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;The range of the char type is 0 to 2^16 - 1. &lt;/span&gt;&lt;/p&gt; &lt;b class="for_questions_blue"&gt;In which package are most of the AWT events that support the  event-delegation model defined? &lt;/b&gt;&lt;br /&gt;Most of the AWT-related events of the event-delegation model are defined  in the java.awt.event package. The AWTEvent class is defined in the  java.awt package.&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the immediate super class of Menu?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;What is the immediate super class of Menu? MenuItem &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the purpose of finalization? &lt;/b&gt;&lt;br /&gt;The purpose of finalization is to give an unreachable object the  opportunity to perform any cleanup processing before the object is  garbage collected. &lt;/p&gt;   &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Which class is the immediate super class of the MenuComponent class. &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Object &lt;/span&gt;&lt;/p&gt; &lt;b class="for_questions_blue"&gt;What invokes a thread's run() method? &lt;/b&gt;&lt;br /&gt;After a thread is started, via its start() method or that of the Thread  class, the JVM invokes the thread's run() method when the thread is  initially executed.&lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is the difference between the Boolean &amp; operator and the &amp;amp;&amp;  operator?&lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;If an expression involving the Boolean &amp;amp; operator is evaluated, both  operands are evaluated. Then the &amp; operator is applied to the operand.  When an expression involving the &amp;amp;&amp; operator is evaluated, the first  operand is evaluated. If the first operand returns a value of true then  the second operand is evaluated. The &amp;amp;&amp;amp; operator is then applied to the  first and second operands. If the first operand evaluates to false, the  evaluation of the second operand is skipped. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Name three subclasses of the Component class. &lt;/b&gt;&lt;br /&gt;Box.Filler, Button, Canvas, Checkbox, Choice, Container, Label, List,  Scrollbar, or TextComponent &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the GregorianCalendar class? &lt;/b&gt;&lt;br /&gt;The GregorianCalendar provides support for traditional Western  calendars. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Which Container method is used to cause a container to be laid out  and redisplayed? &lt;/b&gt;&lt;br /&gt;validate()&lt;br /&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the purpose of the Runtime class? &lt;/b&gt;&lt;br /&gt;The purpose of the Runtime class is to provide access to the Java  runtime system.&lt;br /&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How many times may an object's finalize() method be invoked by the  garbage collector? &lt;/b&gt;&lt;br /&gt;An object's finalize() method may only be invoked once by the garbage  collector. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the purpose of the finally clause of a try-catch-finally  statement? garbage collector? &lt;/b&gt;&lt;br /&gt;The finally clause is used to provide the capability to execute code no  matter whether or not an exception is thrown or caught. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the argument type of a program's main() method? &lt;/b&gt;&lt;br /&gt;A program's main() method takes an argument of the String[] type. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Which Java operator is right associative? &lt;/b&gt;&lt;br /&gt;The = operator is right associative. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the Locale class? &lt;/b&gt;&lt;br /&gt;The Locale class is used to tailor program output to the conventions of  a particular geographic, political, or cultural region.&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can a double value be cast to a byte? &lt;/b&gt;&lt;br /&gt;Yes, a double value can be cast to a byte. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7755322426755379694-8173273839044111791?l=java7861.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://java7861.blogspot.com/feeds/8173273839044111791/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7755322426755379694&amp;postID=8173273839044111791' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7755322426755379694/posts/default/8173273839044111791'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7755322426755379694/posts/default/8173273839044111791'/><link rel='alternate' type='text/html' href='http://java7861.blogspot.com/2007/05/java-faqs-2.html' title='java faqs 2'/><author><name>prashanth</name><uri>http://www.blogger.com/profile/07711599595106933499</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7755322426755379694.post-92187223366961792</id><published>2007-05-29T10:36:00.000-07:00</published><updated>2007-05-29T10:52:54.343-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='java faqs 3'/><title type='text'>java faqs 3</title><content type='html'>&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the difference between a break  statement and a continue statement?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;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. &lt;/span&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What must a class do to implement an interface? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;It must provide all of the methods in the interface and identify the  interface in its implements clause. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What method is invoked to cause an object to begin executing as a  separate thread? &lt;/b&gt;&lt;br /&gt;The start() method of the Thread class is invoked to cause an object to  begin executing as a separate thread. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Name two subclasses of the TextComponent class. &lt;/b&gt;&lt;br /&gt;TextField and TextArea &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the advantage of the event-delegation  model over the earlier event-inheritance model? &lt;/b&gt;&lt;br /&gt;The event-delegation model has two advantages over the event-inheritance  model. First, it enables event handling to be handled by objects other than the  ones that generate the events (or their containers). This allows a clean  separation between a component's design and its use. The other advantage of the  event-delegation model is that it performs much better in applications where  many events are generated. This performance improvement is due to the fact that  the event-delegation model does not have to repeatedly process unhandled events,  as is the case of the event-inheritance model. &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Which containers may have a MenuBar? &lt;/b&gt;&lt;br /&gt;Frame &lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;How are commas used in the  initialization and iteration parts of a for statement?&lt;/span&gt;&lt;span class="answers"&gt; &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Commas are used to separate multiple statements within the  initialization and iteration parts of a for statement. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the purpose of the wait(),  notify(), and notifyAll() methods? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The wait(),notify(), and notifyAll() methods are used to provide an  efficient way for threads to wait for a shared resource. When a thread executes  an object's wait() method, it enters the waiting state. It only enters the ready  state after another thread invokes the object's notify() or notifyAll() methods.&lt;/span&gt;&lt;/p&gt; &lt;b class="for_questions_blue"&gt;What is an abstract method? &lt;/b&gt;&lt;br /&gt;An abstract method is a method whose implementation is deferred to a  subclass.&lt;br /&gt;&lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;How are Java source code files named? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;A Java source code file takes the name of a public class or interface  that is defined within the file. A source code file may contain at most  one public class or interface. If a public class or interface is defined  within a source code file, then the source code file must take the name  of the public class or interface. If no public class or interface is  defined within a source code file, then the file must take on a name  that is different than its classes and interfaces. Source code files use  the .java extension. &lt;/span&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the relationship between the Canvas class and the Graphics  class? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A Canvas object provides access to a Graphics object via its paint()  method. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are the high-level thread states? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The high-level thread states are ready, running, waiting, and dead.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What value does read() return when it has reached the end of a file? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The read() method returns -1 when it has reached the end of a file.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can a Byte object be cast to a double value? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;No, an object cannot be cast to a primitive value. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between a static and a non-static inner class? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A non-static inner class may have object instances that are associated  with instances of the class's outer class. A static inner class does not  have any object instances. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between the String and StringBuffer classes? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;String objects are constants. StringBuffer objects are not. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;If a variable is declared as private, where may the variable be  accessed?  &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A private variable may only be accessed within the class in which it is  declared.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is an object's lock and which objects  have locks?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;An object's lock is a mechanism that is used by multiple threads to  obtain synchronized access to the object. A thread may execute a  synchronized method of an object only after it has acquired the object's  lock. All objects and classes have locks. A class's lock is acquired on  the class's Class object. &lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span class="for_questions_blue"&gt; &lt;b&gt;What is the Dictionary class? &lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;The Dictionary class provides the capability to store key-value pairs. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;How are the elements of a BorderLayout organized? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The elements of a BorderLayout are organized at the borders (North,  South, East, and West) and the center of a container. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the % operator? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;It is referred to as the modulo or remainder operator. It returns the  remainder of dividing the first operand by the second operand. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;When can an object reference be cast to an interface reference?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;An object reference be cast to an interface reference when the object  implements the referenced interface. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the difference between a Window and a Frame?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The Frame class extends Window to define a main application window that  can have a menu bar. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Which class is extended by all other classes?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The Object class is extended by all other classes. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Can an object be garbage collected while it is still reachable?  &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A reachable object cannot be garbage collected. Only unreachable objects  may be garbage collected..&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b class="for_questions_blue"&gt;Is the ternary operator written x : y ? z or x ? y : z ? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;It is written x ? y : z. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between the Font and FontMetrics classes? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The FontMetrics class is used to define implementation-specific  properties, such as ascent and descent, of a Font object. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How is rounding performed under integer division? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The fractional part of the result is truncated. This is known as  rounding toward zero. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What happens when a thread cannot acquire a lock on an object? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;If a thread attempts to execute a synchronized method or synchronized  statement and is unable to acquire an object's lock, it enters the  waiting state until the lock becomes available. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between the Reader/Writer class hierarchy and  the InputStream/OutputStream class hierarchy? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The Reader/Writer class hierarchy is character-oriented, and the  InputStream/OutputStream class hierarchy is byte-oriented. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What classes of exceptions may be caught by a catch clause? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A catch clause can catch any exception that may be assigned to the  Throwable type. This includes the Error and Exception types. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;If a class is declared without any access modifiers, where may the  class be accessed? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A class that is declared without any access modifiers is said to have  package access. This means that the class can only be accessed by other  classes and interfaces that are defined within the same package. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the SimpleTimeZone class? &lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;The SimpleTimeZone class provides support for a Gregorian calendar. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is the Map interface?&lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;The Map interface replaces the JDK 1.1 Dictionary class and is used  associate keys with values. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Does a class inherit the constructors of its superclass? &lt;/b&gt;&lt;br /&gt;A class does not inherit constructors from any of its super classes.&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;For which statements does it make sense to  use a label?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;The only statements for which it makes sense to use a label are those  statements that can enclose a break or continue statement. &lt;/span&gt; &lt;/p&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;What is the purpose of the System class? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;The purpose of the System class is to provide access to system  resources. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Which TextComponent method is used to set a TextComponent to the  read-only state? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;setEditable() &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;How are the elements of a CardLayout organized? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The elements of a CardLayout are stacked, one on top of the other, like  a deck of cards. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Is &amp;&amp;amp;= a valid Java operator?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;No, it is not. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Name the eight primitive Java types.&lt;/span&gt;&lt;/b&gt;&lt;span class="for_questions_blue"&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;The eight primitive types are byte, char, short, int, long, float,  double, and boolean. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Which class should you use to obtain design information about an  object? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The Class class is used to obtain information about an object's design. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the relationship between clipping and repainting?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;When a window is repainted by the AWT painting thread, it sets the  clipping regions to the area of the window that requires repainting. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Is "abc" a primitive value?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The String literal "abc" is not a primitive value. It is a String  object.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the relationship between an event-listener interface and an  event-adapter class? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;An event-listener interface defines the methods that must be implemented  by an event handler for a particular kind of event. An event adapter  provides a default implementation of an event-listener interface. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What restrictions are placed on the values of each case of a switch  statement? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;During compilation, the values of each case of a switch statement must  evaluate to a value that can be promoted to an int value. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What modifiers may be used with an interface declaration? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;An interface may be declared as public or abstract. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Is a class a subclass of itself? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A class is a subclass of itself. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the highest-level event class of the event-delegation model? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The java.util.EventObject class is the highest-level class in the  event-delegation class hierarchy. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What event results from the clicking of a button? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The ActionEvent event is generated as the result of the clicking of a  button. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How can a GUI component handle its own events? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A component can handle its own events by implementing the required  event-listener interface and adding itself as its own event listener. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between a while statement and a do statement? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A while statement checks at the beginning of a loop to see whether the  next loop iteration should occur. A do statement checks at the end of a  loop to see whether the next iteration of a loop should occur. The do  statement will always execute the body of a loop at least once. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How are the elements of a GridBagLayout organized? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The elements of a GridBagLayout are organized according to a grid.  However, the elements are of different sizes and may occupy more than  one row or column of the grid. In addition, the rows and columns may  have different sizes.&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What advantage do Java's layout managers  provide over traditional windowing systems?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;Java uses layout managers to lay out components in a consistent manner  across all windowing platforms. Since Java's layout managers aren't tied  to absolute sizing and positioning, they are able to accommodate  platform-specific differences among windowing systems. &lt;/span&gt; &lt;/p&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;What is the Collection interface? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;The Collection interface provides support for the implementation of a  mathematical bag - an unordered collection of objects that may contain  duplicates. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What modifiers can be used with a local inner class?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A local inner class may be final or abstract. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the difference between static and non-static variables?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A static variable is associated with the class as a whole rather than  with specific instances of a class. Non-static variables take on unique  values with each object instance. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the difference between the paint() and repaint() methods?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The paint() method supports painting via a Graphics object. The  repaint() method is used to cause paint() to be invoked by the AWT  painting thread. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the purpose of the File class?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The File class is used to create objects that provide access to the  files and directories of a local file system. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Can an exception be rethrown? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Yes, an exception can be rethrown. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Which Math method is used to calculate the absolute value of a  number? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The abs() method is used to calculate absolute values. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;How does multithreading take place on a computer with a single CPU? &lt;/span&gt; &lt;/b&gt;&lt;span class="for_questions_blue"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="answers"&gt;The operating system's task scheduler allocates execution time to  multiple tasks. By quickly switching between executing tasks, it creates  the impression that tasks execute sequentially.&lt;/span&gt;&lt;/p&gt;&lt;p&gt; &lt;b class="for_questions_blue"&gt;When does the compiler supply a default constructor for a class? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The compiler supplies a default constructor for a class if no other  constructors are provided. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;When is the finally clause of a try-catch-finally statement executed? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The finally clause of the try-catch-finally statement is always executed  unless the thread of execution terminates or an exception occurs within  the execution of the finally clause. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Which class is the immediate superclass of the Container class? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Component &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;If a method is declared as protected, where may the method be  accessed? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A protected method may only be accessed by classes or interfaces of the  same package or by subclasses of the class in which it is declared.  &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How can the Checkbox class be used to create a radio button? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;By associating Checkbox objects with a CheckboxGroup. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Which non-Unicode letter characters may be used as the first  character of an identifier? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The non-Unicode letter characters $ and _ may appear as the first  character of an identifier &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What restrictions are placed on method overloading? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Two methods may not have the same name and argument list but different  return types. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What happens when you invoke a thread's interrupt method while it is  sleeping or waiting? &lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;When a task's interrupt() method is executed, the task enters the ready  state. The next time the task enters the running state, an  InterruptedException is thrown. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the return type of a program's main() method? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A program's main() method has a void return type.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Name four Container classes.&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;Window, Frame, Dialog, FileDialog, Panel, Applet, or ScrollPane&lt;/span&gt;&lt;/p&gt;&lt;p&gt; &lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the difference between a Choice and a List?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A Choice is displayed in a compact form that requires you to pull it  down to see the list of available choices. Only one item may be selected  from a Choice. A List may be displayed in such a way that several List  items are visible. A List supports the selection of one or more List  items.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What class of exceptions are generated by the Java run-time system? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The Java runtime system generates RuntimeException and Error exceptions. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What class allows you to read objects directly from a stream?  &lt;/span&gt; &lt;/b&gt;&lt;span class="for_questions_blue"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="answers"&gt;The ObjectInputStream class supports the reading of objects from input  streams. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the difference between a field variable and a local variable? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A field variable is a variable that is declared as a member of a class.  A local variable is a variable that is declared local to a method.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Under what conditions is an object's finalize() method invoked by the  garbage collector? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The garbage collector invokes an object's finalize() method when it  detects that the object has become unreachable.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;How are this () and super () used with constructors?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;this() is used to invoke a constructor of the same class. super() is  used to invoke a superclass constructor.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the relationship between a method's throws clause and the  exceptions that can be thrown during the method's execution? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A method's throws clause must declare any checked exceptions that are  not caught within the body of the method.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the difference between the JDK 1.02 event model and the  event-delegation model introduced with JDK 1.1? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The JDK 1.02 event model uses an event inheritance or bubbling approach.  In this model, components are required to handle their own events. If  they do not handle a particular event, the event is inherited by (or  bubbled up to) the component's container. The container then either  handles the event or it is bubbled up to its container and so on, until  the highest-level container has been tried. In the event-delegation  model, specific objects are designated as event handlers for GUI  components. These objects implement event-listener interfaces. The  event-delegation model is more efficient than the event-inheritance  model because it eliminates the processing required to support the  bubbling of unhandled events.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;How is it possible for two String objects with identical values not  to be equal under the == operator? &lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;The == operator compares two objects to determine if they are the same  object in memory. It is possible for two String objects to have the same  value, but located indifferent areas of memory. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Why are the methods of the Math class static? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;So they can be invoked as if they are a mathematical code library.  &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What Checkbox method allows you to tell if a Checkbox is checked? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;getState() &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What state is a thread in when it is executing? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;An executing thread is in the running state. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are the legal operands of the instanceof operator? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The left operand is an object reference or null value and the right  operand is a class, interface, or array type. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;How are the elements of a GridLayout organized? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;The elements of a GridBad layout are of equal size and are laid out  using the squares of a grid. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What an I/O filter? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;An I/O filter is an object that reads from one stream and writes to  another, usually altering the data in some way as it is passed from one  stream to another. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;If an object is garbage collected, can it become reachable again? &lt;/b&gt;&lt;br /&gt;Once an object is garbage collected, it ceases to exist. It can no  longer become reachable again.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt; &lt;span style="font-weight: 400;"&gt;&lt;span style="font-size:100%;"&gt;&lt;script type="text/javascript"&gt;&lt;!-- google_ad_client = "pub-7003540323320880"; google_ad_width = 336; google_ad_height = 280; google_ad_format = "336x280_as"; google_ad_type = "text";  google_ad_channel = "6397297927"; google_color_border = "FFFFFF"; google_color_bg = "FFFFFF"; google_color_link = "0000FF"; google_color_text = "000000"; google_color_url = "191919"; //--&gt; &lt;/script&gt;&lt;script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;&lt;/script&gt;&lt;/span&gt;&lt;/span&gt; &lt;span style="font-weight: 400;"&gt;&lt;span style="font-size:100%;"&gt;&lt;script type="text/javascript"&gt;&lt;!-- google_ad_client = "pub-7003540323320880"; google_ad_width = 336; google_ad_height = 280; google_ad_format = "336x280_as"; google_ad_type = "text";  google_ad_channel = "6397297927"; google_color_border = "FFFFFF"; google_color_bg = "FFFFFF"; google_color_link = "0000FF"; google_color_text = "000000"; google_color_url = "191919"; //--&gt; &lt;/script&gt;&lt;script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;&lt;/script&gt;&lt;/span&gt;&lt;/span&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What are E and PI?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;E is the base of the natural logarithm and PI is mathematical value pi.&lt;/span&gt;&lt;/p&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;Are true and false keywords? &lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;The values true and false are not keywords.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is a void return type? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A void return type indicates that a method does not return a value.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the purpose of the enableEvents() method? &lt;/span&gt; &lt;/b&gt;&lt;span class="for_questions_blue"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="answers"&gt;The enableEvents() method is used to enable an event for a particular  object. Normally, an event is enabled when a listener is added to an  object for a particular event. The enableEvents() method is used by  objects that handle events by overriding their event-dispatch methods. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the difference between the File and RandomAccessFile classes? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The File class encapsulates the files and directories of the local file  system. The RandomAccessFile class provides the methods needed to  directly access data contained in any part of a file. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What happens when you add a double value to a String?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The result is a String object.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is your platform's default character encoding?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;If you are running Java on English Windows platforms, it is probably  Cp1252. If you are running Java on English Solaris platforms, it is most  likely 8859_1..  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Which package is always imported by default?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The java.lang package is always imported by default.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What interface must an object implement before it can be written to a  stream as an object? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;An object must implement the Serializable or Externalizable interface  before it can be written to a stream as an object.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;How are this and super used? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;this is used to refer to the current object instance. super is used to  refer to the variables and methods of the superclass of the current  object instance. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the purpose of garbage collection? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The purpose of garbage collection is to identify and discard objects  that are no longer needed by a program so that their resources may be  reclaimed and reused. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is a compilation unit? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A compilation unit is a Java source code file. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What interface is extended by AWT event listeners? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;All AWT event listeners extend the java.util.EventListener interface. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What restrictions are placed on method overriding? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Overridden methods must have the same name, argument list, and return  type. The overriding method may not limit the access of the method it  overrides. The overriding method may not throw any exceptions that may  not be thrown by the overridden method. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How can a dead thread be restarted? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A dead thread cannot be restarted. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What happens if an exception is not caught? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;An uncaught exception results in the uncaughtException() method of the  thread's ThreadGroup being invoked, which eventually results in the  termination of the program in which it is thrown. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is a layout manager? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A layout manager is an object that is used to organize components in a  container. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Which arithmetic operations can result in the throwing of an  ArithmeticException? &lt;/b&gt;&lt;br /&gt;&lt;span class="answers"&gt;Integer / and % can result in the throwing of an ArithmeticException.&lt;/span&gt;&lt;/p&gt; &lt;span style="font-weight: 400;"&gt;&lt;span style="font-size:100%;"&gt;&lt;script type="text/javascript"&gt;&lt;!-- google_ad_client = "pub-7003540323320880"; google_ad_width = 336; google_ad_height = 280; google_ad_format = "336x280_as"; google_ad_type = "text";  google_ad_channel = "6397297927"; google_color_border = "FFFFFF"; google_color_bg = "FFFFFF"; google_color_link = "0000FF"; google_color_text = "000000"; google_color_url = "191919"; //--&gt; &lt;/script&gt; &lt;script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt; &lt;/script&gt;&lt;iframe name="google_ads_frame" src="http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-7003540323320880&amp;dt=1180460359484&amp;amp;lmt=1180149959&amp;prev_fmts=336x280_as&amp;amp;format=336x280_as&amp;output=html&amp;amp;amp;correlator=1180460358187&amp;channel=6397297927&amp;amp;url=http%3A%2F%2Ftechpreparation.com%2Fcomputer-interview-questions%2Fjava-interview-questions-answers22.htm&amp;color_bg=FFFFFF&amp;amp;amp;color_text=000000&amp;color_link=0000FF&amp;amp;color_url=191919&amp;color_border=FFFFFF&amp;amp;ad_type=text&amp;ref=http%3A%2F%2Ftechpreparation.com%2Fcomputer-interview-questions%2Fjava-interview-questions-answers21.htm&amp;amp;cc=42&amp;flash=9&amp;amp;amp;u_h=768&amp;u_w=1024&amp;amp;u_ah=738&amp;u_aw=1024&amp;amp;u_cd=32&amp;u_tz=330&amp;amp;u_his=50&amp;u_java=true&amp;amp;u_nplug=23&amp;u_nmime=91" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" frameborder="0" height="280" scrolling="no" width="336"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What are three ways in which a thread can  enter the waiting state?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;A thread can enter the waiting state by invoking its sleep() method, by  blocking on I/O, by unsuccessfully attempting to acquire an object's  lock, or by invoking an object's wait() method. It can also enter the  waiting state by invoking its (deprecated) suspend() method. &lt;/span&gt; &lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;Can an abstract class be final? &lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;An abstract class may not be declared as final. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the ResourceBundle class? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The ResourceBundle class is used to store locale-specific resources that  can be loaded by a program to tailor the program's appearance to the  particular locale in which it is being run. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What happens if a try-catch-finally statement does not have a catch  clause to handle an exception that is thrown within the body of the try  statement? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The exception propagates up to the next higher level try-catch statement  (if any) or results in the program's termination. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is numeric promotion? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Numeric promotion is the conversion of a smaller numeric type to a  larger numeric type, so that integer and floating-point operations may  take place. In numerical promotion, byte, char, and short values are  converted to int values. The int values are also converted to long  values, if necessary. The long and float values are converted to double  values, as required. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the difference between a Scrollbar and a ScrollPane? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A Scrollbar is a Component, but not a Container. A ScrollPane is a  Container. A ScrollPane handles its own events and performs its own  scrolling. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the difference between a public and a non-public class?  &lt;/span&gt; &lt;/b&gt;&lt;span class="for_questions_blue"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="answers"&gt;A public class may be accessed outside of its package. A non-public  class may not be accessed outside of its package. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;To what value is a variable of the boolean type automatically  initialized? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The default value of the boolean type is false.&lt;/span&gt;&lt;/p&gt;&lt;p&gt; &lt;b class="for_questions_blue"&gt;Can try statements be nested? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Try statements may be tested. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between the prefix and postfix forms of the ++  operator? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;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. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the purpose of a statement block? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A statement block is used to organize a sequence of statements as a  single statement group. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is a Java package and how is it used? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;A Java package is a naming context for classes and interfaces. A package  is used to create a separate name space for groups of classes and  interfaces. Packages are also used to organize related classes and  interfaces into a single API unit and to control accessibility to these  classes and interfaces. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What modifiers may be used with a top-level class? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;A top-level class may be public, abstract, or final. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are the Object and Class classes used for? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The Object class is the highest-level class in the Java class hierarchy.  The Class class is used to represent the classes and interfaces that are  loaded by a Java program. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;How does a try statement determine which catch clause should be used to  handle an exception? &lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;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. &lt;/span&gt;&lt;/p&gt; &lt;b class="for_questions_blue"&gt;Can an unreachable object become reachable again? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;An unreachable object may become reachable again. This can happen when  the object's finalize() method is invoked and the object performs an  operation which causes it to become accessible to reachable objects.&lt;/span&gt;&lt;br /&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;When is an object subject to garbage  collection?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;An object is subject to garbage collection when it becomes unreachable  to the program in which it is used.&lt;/span&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;What method must be implemented by all threads? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;All tasks must implement the run() method, whether they are a subclass  of Thread or implement the Runnable interface. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What methods are used to get and set the text label displayed by a  Button object? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;getLabel() and setLabel() &lt;/span&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Which Component subclass is used for drawing and painting? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Canvas &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What are the two basic ways in which classes that can be run as threads  may be defined? &lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;A thread class may be declared as a subclass of Thread, or it may  implement the Runnable interface. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are the problems faced by Java programmers who don't use layout  managers? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Without layout managers, Java programmers are faced with determining how  their GUI will be displayed across multiple windowing systems and  finding a common sizing and positioning that will work within the  constraints imposed by each windowing system. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between an if statement and a switch statement? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The if statement is used to select among two alternatives. It uses a  Boolean expression to decide which alternative should be executed. The  switch statement is used to select among multiple alternatives. It uses  an int expression to determine which alternative should be executed. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can there be an abstract class with no abstract methods in it? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;yes. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can an Interface be final? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;yes. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can an Interface have an inner class? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Yes public interface abc { static int i=0; void dd(); class a1 { a1() {  int j; System.out.println("in interfia"); }; public static void  main(String a1[]) { System.out.println("in interfia"); } } }&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can we define private and protected modifiers for variables in  interfaces? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Yes. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is Externalizable? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Externalizable is an Interface that extends Serializable Interface. And  sends data into Streams in Compressed Format. It has two methods,  writeExternal(ObjectOuput out) and readExternal(ObjectInput in) &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What modifiers are allowed for methods in an Interface? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Only public and abstract modifiers are allowed for methods in  interfaces. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is a local, member and a class variable?&lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;Variables declared within a method are "local" variables.&lt;br /&gt;Variables declared within the class i.e not within any methods are  "member" variables (global variables).&lt;br /&gt;Variables declared within the class i.e not within any methods and are  defined as "static" are class variables&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;I made my class Cloneable but I still get 'Can't access protected method  clone. Why? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Yeah, some of the Java books, in particular "The Java Programming  Language", imply that all you have to do in order to have your class  support clone() is implement the Cloneable interface. Not so. Perhaps  that was the intent at some point, but that's not the way it works  currently. As it stands, you have to implement your own public clone()  method, even if it doesn't do anything special and just calls  super.clone().&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are the different identifier states of a Thread? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The different identifiers of a Thread are:&lt;br /&gt;R - Running or runnable thread&lt;br /&gt;S - Suspended thread&lt;br /&gt;CW - Thread waiting on a condition variable&lt;br /&gt;MW - Thread waiting on a monitor lock&lt;br /&gt;MS - Thread suspended waiting on a monitor lock&lt;/span&gt;&lt;/p&gt; &lt;span style="font-weight: 400;"&gt;&lt;span style="font-size:100%;"&gt;&lt;script type="text/javascript"&gt;&lt;!-- google_ad_client = "pub-7003540323320880"; google_ad_width = 336; google_ad_height = 280; google_ad_format = "336x280_as"; google_ad_type = "text";  google_ad_channel = "6397297927"; google_color_border = "FFFFFF"; google_color_bg = "FFFFFF"; google_color_link = "0000FF"; google_color_text = "000000"; google_color_url = "191919"; //--&gt; &lt;/script&gt; &lt;script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt; &lt;/script&gt;&lt;iframe name="google_ads_frame" src="http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-7003540323320880&amp;dt=1180460440000&amp;amp;lmt=1180149972&amp;prev_fmts=336x280_as&amp;amp;format=336x280_as&amp;output=html&amp;amp;amp;correlator=1180460437828&amp;channel=6397297927&amp;amp;url=http%3A%2F%2Ftechpreparation.com%2Fcomputer-interview-questions%2Fjava-interview-questions-answers24.htm&amp;color_bg=FFFFFF&amp;amp;amp;color_text=000000&amp;color_link=0000FF&amp;amp;color_url=191919&amp;color_border=FFFFFF&amp;amp;ad_type=text&amp;ref=http%3A%2F%2Ftechpreparation.com%2Fcomputer-interview-questions%2Fjava-interview-questions-answers23.htm&amp;amp;cc=39&amp;flash=9&amp;amp;amp;u_h=768&amp;u_w=1024&amp;amp;u_ah=738&amp;u_aw=1024&amp;amp;u_cd=32&amp;u_tz=330&amp;amp;u_his=50&amp;u_java=true&amp;amp;u_nplug=23&amp;u_nmime=91" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" frameborder="0" height="280" scrolling="no" width="336"&gt;&lt;/iframe&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: 400;"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt; &lt;span style="font-weight: 400;"&gt;&lt;span style="font-size:100%;"&gt;&lt;script type="text/javascript"&gt;&lt;!-- google_ad_client = "pub-7003540323320880"; google_ad_width = 336; google_ad_height = 280; google_ad_format = "336x280_as"; google_ad_type = "text";  google_ad_channel = "6397297927"; google_color_border = "FFFFFF"; google_color_bg = "FFFFFF"; google_color_link = "0000FF"; google_color_text = "000000"; google_color_url = "191919"; //--&gt; &lt;/script&gt;&lt;script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;&lt;/script&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7755322426755379694-92187223366961792?l=java7861.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://java7861.blogspot.com/feeds/92187223366961792/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7755322426755379694&amp;postID=92187223366961792' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7755322426755379694/posts/default/92187223366961792'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7755322426755379694/posts/default/92187223366961792'/><link rel='alternate' type='text/html' href='http://java7861.blogspot.com/2007/05/java-faqs-3.html' title='java faqs 3'/><author><name>prashanth</name><uri>http://www.blogger.com/profile/07711599595106933499</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7755322426755379694.post-1503993102544771902</id><published>2007-05-29T10:29:00.000-07:00</published><updated>2007-05-29T10:35:25.459-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='java faqs 4'/><title type='text'>java faq 4</title><content type='html'>&lt;h2&gt;&lt;span class="heading_2"&gt;Java Interview Questions And Answers&lt;/span&gt;&lt;span style="font-weight: 400;"&gt;&lt;span style=";font-family:Arial;font-size:100%;"  &gt;  &lt;span class="small_headings"&gt;[Java Frequently Asked  Questions ,Java FAQ ] &lt;a href="http://www.addthis.com/bookmark.php" onclick="addthis_url   = location.href; addthis_title = document.title; return addthis_click(this);" target="_blank"&gt;&lt;img src="http://s7.addthis.com/button2-bm.png" alt="AddThis Social Bookmark Button" border="0" height="24" width="160" /&gt;&lt;/a&gt; &lt;script type="text/javascript"&gt;var addthis_pub = 'leopez';&lt;/script&gt;&lt;script type="text/javascript" src="http://s7.addthis.com/js/widget.php?v=10"&gt;&lt;/script&gt;   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt; &lt;b&gt;&lt;span class="for_questions_blue"&gt;What are some alternatives to inheritance?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;Delegation is an alternative to inheritance. Delegation means that you  include an instance of another class as an instance variable, and  forward messages to the instance. It is often safer than inheritance  because it forces you to think about each message you forward, because  the instance is of a known class, rather than a new class, and because  it doesn't force you to accept all the methods of the super class: you  can provide only the methods that really make sense. On the other hand,  it makes you write more code, and it is harder to re-use (because it is  not a subclass). &lt;/span&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;Why isn't there operator overloading? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;Because C++ has proven by example that operator overloading makes code  almost impossible to maintain. In fact there very nearly wasn't even  method overloading in Java, but it was thought that this was too useful  for some very basic methods like print(). Note that some of the classes  like DataOutputStream have unoverloaded methods like writeInt() and  writeByte(). &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What does it mean that a method or field is "static"?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Static variables and methods are instantiated only once per class. In  other words they are class variables, not instance variables. If you  change the value of a static variable in a particular object, the value  of that variable changes for all instances of that class.&lt;br /&gt;Static methods can be referenced with the name of the class rather than  the name of a particular object of the class (though that works too).  That's how library methods like System.out.println() work. out is a  static field in the java.lang.System class. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Why do threads block on I/O? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Threads block on i/o (that is enters the waiting state) so that other  threads may execute while the i/o Operation is performed. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is synchronization and why is it important?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;With respect to multithreading, synchronization is the capability to  control the access of multiple threads to shared resources. Without  synchronization, it is possible for one thread to modify a shared object  while another thread is in the process of using or updating that  object's value. This often leads to significant errors. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Is null a keyword? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The null value is not a keyword. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Which characters may be used as the second character of an  identifier,but not as the first character of an identifier? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The digits 0 through 9 may not be used as the first character of an  identifier but they may be used after the first character of an  identifier. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the difference between notify() and notifyAll()?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;notify() is used to unblock one waiting thread; notifyAll() is used to  unblock all of them. Using notify() is preferable (for efficiency) when  only one blocked thread can benefit from the change (for example, when  freeing a buffer back into a pool). notifyAll() is necessary (for  correctness) if multiple threads should resume (for example, when  releasing a "writer" lock on a file might permit all "readers" to  resume).&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Why can't I say just abs() or sin() instead of Math.abs() and Math.sin()?&lt;/span&gt;&lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The import statement does not bring methods into your local name space.  It lets you abbreviate class names, but not get rid of them altogether.  That's just the way it works, you'll get used to it. It's really a lot  safer this way.&lt;br /&gt;However, there is actually a little trick you can use in some cases that  gets you what you want. If your top-level class doesn't need to inherit  from anything else, make it inherit from java.lang.Math. That *does*  bring all the methods into your local name space. But you can't use this  trick in an applet, because you have to inherit from java.awt.Applet.  And actually, you can't use it on java.lang.Math at all, because Math is  a "final" class which means it can't be extended. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Why are there no global variables in Java? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Global variables are considered bad form for a variety of reasons: ·  Adding state variables breaks referential transparency (you no longer  can understand a statement or expression on its own: you need to  understand it in the context of the settings of the global variables).&lt;br /&gt;· State variables lessen the cohesion of a program: you need to know  more to understand how something works. A major point of Object-Oriented  programming is to break up global state into more easily understood  collections of local state.&lt;br /&gt;· When you add one variable, you limit the use of your program to one  instance. What you thought was global, someone else might think of as  local: they may want to run two copies of your program at once.&lt;br /&gt;For these reasons, Java decided to ban global variables.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What does it mean that a class or member is final? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A final class can no longer be subclassed. Mostly this is done for  security reasons with basic classes like String and Integer. It also  allows the compiler to make some optimizations, and makes thread safety  a little easier to achieve. Methods may be declared final as well. This  means they may not be overridden in a subclass.&lt;br /&gt;Fields can be declared final, too. However, this has a completely  different meaning. A final field cannot be changed after it's  initialized, and it must include an initializer statement where it's  declared. For example,&lt;br /&gt;public final double c = 2.998;&lt;br /&gt;It's also possible to make a static field final to get the effect of  C++'s const statement or some uses of C's #define, e.g. public static  final double c = 2.998;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What does it mean that a method or class  is abstract?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;An abstract class cannot be instantiated. Only its subclasses can be  instantiated. You indicate that a class is abstract with the abstract  keyword like this:&lt;br /&gt;public abstract class Container extends Component {&lt;br /&gt;Abstract classes may contain abstract methods. A method declared  abstract is not actually implemented in the current class. It exists  only to be overridden in subclasses. It has no body. For example,&lt;br /&gt;public abstract float price();&lt;br /&gt;Abstract methods may only be included in abstract classes. However, an  abstract class is not required to have any abstract methods, though most  of them do.&lt;br /&gt;Each subclass of an abstract class must override the abstract methods of  its superclasses or itself be declared abstract.&lt;/span&gt;&lt;/p&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;What is the main difference between Java platform and other platforms? &lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;The Java platform differs from most other platforms in that it's a  software-only platform that runs on top of other hardware-based  platforms.&lt;br /&gt;The Java platform has three elements:&lt;br /&gt;Java programming language&lt;br /&gt;The Java Virtual Machine (Java VM)&lt;br /&gt;The Java Application Programming Interface (Java API) &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the Java Virtual Machine? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The Java Virtual Machine is a software that can be ported onto various  hardware-based platforms. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the Java API? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The Java API is a large collection of ready-made software components  that provide many useful capabilities, such as graphical user interface  (GUI) widgets. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the package? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The package is a Java namespace or part of Java libraries. The Java API  is grouped into libraries of related classes and interfaces; these  libraries are known as packages. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is native code? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The native code is code that after you compile it, the compiled code  runs on a specific hardware platform. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Explain the user defined Exceptions? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;User defined Exceptions are the separate Exception classes defined by  the user for specific purposed. An user defined can created by simply  sub-classing it to the Exception class. This allows custom exceptions to  be generated (using throw) and caught in the same way as normal  exceptions.&lt;br /&gt;Example:&lt;br /&gt;class myCustomException extends Exception {&lt;br /&gt;// The class simply has to exist to be an exception&lt;br /&gt;} &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Is Java code slower than native code? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Not really. As a platform-independent environment, the Java platform can  be a bit slower than native code. However, smart compilers, well-tuned  interpreters, and just-in-time bytecode compilers can bring performance  close to that of native code without threatening portability. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can main() method be overloaded? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Yes. the main() method is a special method for a program entry. You can  overload main() method in any ways. But if you change the signature of  the main method, the entry point for the program will be gone. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the serialization? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The serialization is a kind of mechanism that makes a class or a bean  persistence by having its properties or fields and state information  saved and restored to and from storage. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Explain the new Features of JDBC 2.0 Core API? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The JDBC 2.0 API includes the complete JDBC API, which includes both  core and Optional Package API, and provides inductrial-strength database  computing capabilities.&lt;br /&gt;New Features in JDBC 2.0 Core API:&lt;br /&gt;&lt;br /&gt;Scrollable result sets- using new methods in the ResultSet interface  allows programmatically move the to particular row or to a position  relative to its current position&lt;br /&gt;JDBC 2.0 Core API provides the Batch Updates functionality to the java  applications.&lt;br /&gt;Java applications can now use the ResultSet.updateXXX methods.&lt;br /&gt;New data types - interfaces mapping the SQL3 data types&lt;br /&gt;Custom mapping of user-defined types (UTDs)&lt;br /&gt;Miscellaneous features, including performance hints, the use of  character streams, full precision for java.math.BigDecimal values,  additional security, and support for time zones in date, time, and  timestamp values.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How you can force the garbage collection? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Garbage collection automatic process and can't be forced.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Explain garbage collection?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;Garbage collection is one of the most important feature of Java. Garbage  collection is also called automatic memory management as JVM  automatically removes the unused variables/objects (value is null) from  the memory. User program cann't directly free the object from memory,  instead it is the job of the garbage collector to automatically free the  objects that are no longer referenced by a program. Every class inherits  finalize() method from java.lang.Object, the finalize() method is called  by garbage collector when it determines no more references to the object  exists. In Java, it is good idea to explicitly assign null into a  variable when no more in use. I Java on calling System.gc() and  Runtime.gc(), JVM tries to recycle the unused objects, but there is no  guarantee when all the objects will garbage collected.&lt;/span&gt;&lt;/p&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;Describe the principles of OOPS. &lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;There are three main principals of oops which are called Polymorphism,  Inheritance and Encapsulation. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Explain the Encapsulation principle. &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Encapsulation is a process of binding or wrapping the data and the codes  that operates on the data into a single entity. This keeps the data safe  from outside interface and misuse. One way to think about encapsulation  is as a protective wrapper that prevents code and data from being  arbitrarily accessed by other code defined outside the wrapper. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Explain the Inheritance principle. &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Inheritance is the process by which one object acquires the properties  of another object. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Explain the Polymorphism principle. &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The meaning of Polymorphism is something like one name many forms.  Polymorphism enables one entity to be used as as general category for  different types of actions. The specific action is determined by the  exact nature of the situation. The concept of polymorphism can be  explained as "one interface, multiple methods". &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Explain the different forms of Polymorphism. &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;From a practical programming viewpoint, polymorphism exists in three  distinct forms in Java:&lt;br /&gt;Method overloading&lt;br /&gt;Method overriding through inheritance&lt;br /&gt;Method overriding through the Java interface &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are Access Specifiers available in Java? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;ccess specifiers are keywords that determines the type of access to the  member of a class. These are:&lt;br /&gt;Public&lt;br /&gt;Protected&lt;br /&gt;Private&lt;br /&gt;Defaults &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Describe the wrapper classes in Java. &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Wrapper class is wrapper around a primitive data type. An instance of a  wrapper class contains, or wraps, a primitive value of the corresponding  type.&lt;br /&gt;&lt;br /&gt;Following table lists the primitive types and the corresponding wrapper  classes:&lt;br /&gt;&lt;br /&gt;Primitive Wrapper&lt;br /&gt;boolean java.lang.Boolean&lt;br /&gt;byte java.lang.Byte&lt;br /&gt;char java.lang.Character&lt;br /&gt;double java.lang.Double&lt;br /&gt;float java.lang.Float&lt;br /&gt;int java.lang.Integer&lt;br /&gt;long java.lang.Long&lt;br /&gt;short java.lang.Short&lt;br /&gt;void java.lang.Void &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Question: Read the following program:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;public class test {&lt;br /&gt;public static void main(String [] args) {&lt;br /&gt;int x = 3;&lt;br /&gt;int y = 1;&lt;br /&gt;if (x = y)&lt;br /&gt;System.out.println("Not equal");&lt;br /&gt;else&lt;br /&gt;System.out.println("Equal");&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;What is the result?&lt;br /&gt;A. The output is “Equal”&lt;br /&gt;B. The output in “Not Equal”&lt;br /&gt;C. An error at " if (x = y)" causes compilation to fall.&lt;br /&gt;D. The program executes but no output is show on console.&lt;/b&gt;&lt;br /&gt;&lt;span class="answers"&gt;&lt;br /&gt;Answer: C&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Use the Externalizable interface when you need complete control over  your Bean's serialization (for example, when writing and reading a  specific file format).&lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;No. Earlier order is maintained.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;The superclass constructor runs before the  subclass constructor. The subclass's version of the overridable method  will be invoked before the subclass's constructor has been invoked. If  the subclass's overridable method depends on the proper initialization  of the subclass (through the subclass constructor), the method will most  likely fail. Is that true?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;Yes. It is true&lt;/span&gt;&lt;/p&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;Why are the interfaces more flexible than abstract classes? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;--An interface-defined type can be implemented by any class in a class  hierarchy and can be extended by another interface. In contrast, an  abstract-class-defined type can be implemented only by classes that  subclass the abstract class.&lt;br /&gt;--An interface-defined type can be used well in polymorphism. The  so-called interface type vs. implementation types.&lt;br /&gt;--Abstract classes evolve more easily than interfaces. If you add a new  concrete method to an abstract class, the hierarchy system is still  working. If you add a method to an interface, the classes that rely on  the interface will break when recompiled.&lt;br /&gt;--Generally, use interfaces for flexibility; use abstract classes for  ease of evolution (like expanding class functionality).  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What are new language features in J2SE 5.0? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Generally:&lt;br /&gt;1. generics&lt;br /&gt;2. static imports&lt;br /&gt;3. annotations&lt;br /&gt;4. typesafe enums&lt;br /&gt;5. enhanced for loop&lt;br /&gt;6. autoboxing/unboxing&lt;br /&gt;7. varargs&lt;br /&gt;8. covariant return types&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is covariant return type? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A covariant return type lets you override a superclass method with a  return type that subtypes the superclass method's return type. So we can  use covariant return types to minimize upcasting and downcasting.&lt;br /&gt;class Parent {&lt;br /&gt;Parent foo () {&lt;br /&gt;System.out.println ("Parent foo() called");&lt;br /&gt;return this;&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;class Child extends Parent {&lt;br /&gt;Child foo () {&lt;br /&gt;System.out.println ("Child foo() called");&lt;br /&gt;return this;&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;class Covariant {&lt;br /&gt;public static void main(String[] args) {&lt;br /&gt;Child c = new Child();&lt;br /&gt;Child c2 = c.foo(); // c2 is Child&lt;br /&gt;Parent c3 = c.foo(); // c3 points to Child&lt;br /&gt;}&lt;br /&gt;}&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the result of the following statement?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;int i = 1, float f = 2.0f;&lt;br /&gt;i += f; //ok, the cast done automatically by the compiler&lt;br /&gt;i = i + f; //error&lt;br /&gt;The compound assignment operators automatically include cast operations  in their behaviors.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is externalization? Where is it useful?&lt;/span&gt;&lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Use the Externalizable interface when you need complete control over  your Bean's serialization (for example, when writing and reading a  specific file format).&lt;/span&gt;&lt;/p&gt;   &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What will be the output on executing the  following code.&lt;/span&gt;&lt;br /&gt;public class MyClass {&lt;br /&gt;public static void main (String args[] ) {&lt;br /&gt;int abc[] = new int [5];&lt;br /&gt;System.out.println(abc);&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;A Error array not initialized&lt;br /&gt;B 5&lt;br /&gt;C null&lt;br /&gt;D Print some junk characters &lt;/b&gt;&lt;br /&gt;&lt;span class="answers"&gt;&lt;br /&gt;Answer : D&lt;br /&gt;&lt;br /&gt;It will print some junk characters to the output. Here it will not give  any compile time or runtime error because we have declared and  initialized the array properly. Event if we are not assigning a value to  the array, it will always initialized to its defaults. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What will be the output on executing the following code.  &lt;/span&gt;&lt;br /&gt;public class MyClass {&lt;br /&gt;public static void main (String args[] ) {&lt;br /&gt;int abc[] = new int [5];&lt;br /&gt;System.out.println(abc[0]);&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;A Error array not initialized&lt;br /&gt;B 5&lt;br /&gt;C 0&lt;br /&gt;D Print some junk characters &lt;/b&gt;&lt;br /&gt;&lt;span class="answers"&gt;&lt;br /&gt;Answer : C.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is a marker interface ?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;An interface that contains no methods. E.g.: Serializable, Cloneable,  SingleThreadModel etc. It is used to just mark java classes that support  certain capability.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What are tag interfaces?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Tag interface is an alternate name for marker interface. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What are the restrictions placed on static method ?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;We cannot override static methods. We cannot access any object variables  inside static method. Also the this reference also not available in  static methods. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is JVM? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;JVM stands for Java Virtual Machine. It is the run time for java  programs. All are java programs are running inside this JVM only. It  converts java byte code to OS specific commands. In addition to  governing the execution of an application's byte codes, the virtual  machine handles related tasks such as managing the system's memory,  providing security against malicious code, and managing multiple threads  of program execution. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is JIT? &lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt;  &lt;/b&gt;&lt;span class="answers"&gt;JIT stands for Just In Time compiler. It compiles java byte code to  native code.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What are ClassLoaders?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A class loader is an object that is responsible for loading classes. The  class ClassLoader is an abstract class. Given the name of a class, a  class loader should attempt to locate or generate data that constitutes  a definition for the class. A typical strategy is to transform the name  into a file name and then read a "class file" of that name from a file  system.&lt;br /&gt;Every Class object contains a reference to the ClassLoader that defined  it.&lt;br /&gt;Class objects for array classes are not created by class loaders, but  are created automatically as required by the Java runtime. The class  loader for an array class, as returned by Class.getClassLoader() is the  same as the class loader for its element type; if the element type is a  primitive type, then the array class has no class loader.&lt;br /&gt;Applications implement subclasses of ClassLoader in order to extend the  manner in which the Java virtual machine dynamically loads classes.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is Service Locator pattern? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The Service Locator pattern locates J2EE (Java 2 Platform, Enterprise  Edition) services for clients and thus abstracts the complexity of  network operation and J2EE service lookup as EJB (Enterprise JavaBean)  Interview Questions - Home and JMS (Java Message Service) component factories. The Service  Locator hides the lookup process's implementation details and complexity  from clients. To improve application performance, Service Locator caches  service objects to eliminate unnecessary JNDI (Java Naming and Directory  Interface) activity that occurs in a lookup operation. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is Session Facade pattern? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Session facade is one design pattern that is often used while developing  enterprise applications. It is implemented as a higher level component  (i.e.: Session EJB), and it contains all the iteractions between low  level components (i.e.: Entity EJB). It then provides a single interface  for the functionality of an application or part of it, and it decouples  lower level components simplifying the design. Think of a bank  situation, where you have someone that would like to transfer money from  one account to another. In this type of scenario, the client has to  check that the user is authorized, get the status of the two accounts,  check that there are enough money on the first one, and then call the  transfer. The entire transfer has to be done in a single transaction  otherwise is something goes south, the situation has to be restored.&lt;br /&gt;As you can see, multiple server-side objects need to be accessed and  possibly modified. Multiple fine-grained invocations of Entity (or even  Session) Beans add the overhead of network calls, even multiple  transaction. In other words, the risk is to have a solution that has a  high network overhead, high coupling, poor reusability and  mantainability.&lt;br /&gt;The best solution is then to wrap all the calls inside a Session Bean,  so the clients will have a single point to access (that is the session  bean) that will take care of handling all the rest. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is Data Access Object pattern? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;The Data Access Object (or DAO) pattern: separates a data resource's  client interface from its data access mechanisms adapts a specific data  resource's access API to a generic client interface&lt;br /&gt;The DAO pattern allows data access mechanisms to change independently of  the code that uses the data.&lt;br /&gt;The DAO implements the access mechanism required to work with the data  source. The data source could be a persistent store like an RDBMS, an  external service like a B2B exchange, a repository like an LDAP  database, or a business service accessed via CORBA Internet Inter-ORB  Protocol (IIOP) or low-level sockets. The business component that relies  on the DAO uses the simpler interface exposed by the DAO for its  clients. The DAO completely hides the data source implementation details  from its clients. Because the interface exposed by the DAO to clients  does not change when the underlying data source implementation changes,  this pattern allows the DAO to adapt to different storage schemes  without affecting its clients or business components. Essentially, the  DAO acts as an adapter between the component and the data source.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can we make an EJB singleton? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;This is a debatable question, and for every answer we propose there can  be contradictions. I propose 2 solutions of the same. Remember that  EJB's are distributed components and can be deployed on different JVM's  in a Distributed environment&lt;br /&gt;i) Follow the steps as given below&lt;br /&gt;Make sure that your serviceLocator is deployed on only one JVM.&lt;br /&gt;In the serviceLocator create a HashTable/HashMap(You are the right judge  to choose between these two)&lt;br /&gt;When ever a request comes for an EJB to a serviceLocator, it first  checks in the HashTable if an entry already exists in the table with key  being the JNDI name of EJB. If key is present and value is not null,  return the existing reference, else lookup the EJB in JNDI as we do  normally and add an entry into the Hashtable before returning it to the  client. This makes sure that you maintain a singleton of EJB.&lt;br /&gt;ii) In distributed environment our components/Java Objects would be  running on different JVM's. So the normal singleton code we write for  maintaining single instance works fine for single JVM, but when the  class could be loaded in multiple JVM's and Instantiated in multiple  JVM's normal singleton code does not work. This is because the  ClassLoaders being used in the different JVM's are different from each  other and there is no defined mechanism to check and compare what is  loaded in another JVM. A solution could be(Not tested yet. Need your  feedback on this) to write our own ClassLoader and pass this classLoader  as argument, whenever we are creating a new Instance and make sure that  only one instance is created for the proposed class. This can be done  easily.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;How can we make a class Singleton ?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;A) If the class is Serializable&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;class Singleton implements Serializable&lt;br /&gt;{&lt;br /&gt;private static Singleton instance;&lt;br /&gt;&lt;br /&gt;private Singleton() { }&lt;br /&gt;&lt;br /&gt;public static synchronized Singleton getInstance()&lt;br /&gt;&lt;/span&gt;{&lt;span class="answers"&gt;&lt;br /&gt;if (instance == null)&lt;br /&gt;instance = new Singleton();&lt;br /&gt;return instance;&lt;br /&gt;&lt;/span&gt;}&lt;span class="answers"&gt;&lt;br /&gt;&lt;br /&gt;/**&lt;br /&gt;If the singleton implements Serializable, then this&lt;br /&gt;* method must be supplied.&lt;br /&gt;*/&lt;br /&gt;protected Object readResolve() {&lt;br /&gt;return instance;&lt;br /&gt;&lt;/span&gt;}&lt;span class="answers"&gt;&lt;br /&gt;&lt;br /&gt;/**&lt;br /&gt;This method avoids the object fro being cloned&lt;br /&gt;*/&lt;br /&gt;public Object clone() {&lt;br /&gt;throws CloneNotSupportedException ;&lt;br /&gt;//return instance;&lt;br /&gt;&lt;/span&gt;}&lt;span class="answers"&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;B) If the class is NOT Serializable&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;class Singleton&lt;br /&gt;&lt;/span&gt;{&lt;span class="answers"&gt;&lt;br /&gt;private static Singleton instance;&lt;br /&gt;private Singleton() { }&lt;br /&gt;&lt;br /&gt;public static synchronized Singleton getInstance()&lt;br /&gt;&lt;/span&gt;{&lt;span class="answers"&gt;&lt;br /&gt;if (instance == null)&lt;br /&gt;instance = new Singleton();&lt;br /&gt;return instance;&lt;br /&gt;&lt;/span&gt;}&lt;span class="answers"&gt;&lt;br /&gt;&lt;br /&gt;/**&lt;br /&gt;This method avoids the object from being cloned&lt;br /&gt;**/&lt;br /&gt;public Object clone() {&lt;br /&gt;throws CloneNotSupportedException ;&lt;br /&gt;//return instance;&lt;br /&gt;&lt;/span&gt;}&lt;span class="answers"&gt;&lt;br /&gt;&lt;br /&gt;}  &lt;/span&gt;  &lt;/p&gt;&lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;How is static Synchronization different form non-static synchronization? &lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;When Synchronization is applied on a static Member or a static block,  the lock is performed on the Class and not on the Object, while in the  case of a Non-static block/member, lock is applied on the Object and not  on class. [Trail 2: There is a class called Class in Java whose object  is associated with the object(s) of your class. All the static members  declared in your class will have reference in this class(Class). As long  as your class exists in memory this object of Class is also present.  Thats how even if you create multiple objects of your class only one  Class object is present and all your objects are linked to this Class  object. Even though one of your object is GCed after some time, this  object of Class is not GCed untill all the objects associated with it  are GCed.&lt;br /&gt;This means that when ever you call a "static synchronized" block, JVM  locks access to this Class object and not any of your objects. Your  client can till access the non-static members of your objects. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What are class members and Instance members?  &lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;Any global members(Variables, methods etc.) which are static are called  as Class level members and those which are non-static are called as  Instance level members. &lt;/span&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Name few Garbage collection algorithms?  &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Here they go:&lt;br /&gt;Mark and Sweep&lt;br /&gt;Reference counting&lt;br /&gt;Tracing collectors&lt;br /&gt;Copying collectors&lt;br /&gt;Heap compaction&lt;br /&gt;Mark-compact collectors&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can we force Garbage collection? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;java follows a philosophy of automatic garbage collection, you can  suggest or encourage the JVM to perform garbage collection but you can  not force it. Once a variable is no longer referenced by anything it is  available for garbage collection. You can suggest garbage collection  with System.gc(), but this does not guarantee when it will happen. Local  variables in methods go out of scope when the method exits. At this  point the methods are eligible for garbage collection. Each time the  method comes into scope the local variables are re-created.&lt;/span&gt;&lt;/p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Does Java pass by Value or reference?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;Its uses Reference while manipulating objects but pass by value when  sending method arguments. Those who feel why I added this simple  question in this section while claiming to be maintaining only strong  and interesting questions, go ahead and answer following questions.&lt;br /&gt;a)What is the out put of:&lt;br /&gt;&lt;br /&gt;import java.util.*;&lt;br /&gt;&lt;br /&gt;class TestCallByRefWithObject&lt;br /&gt;&lt;/span&gt;{&lt;span class="answers"&gt;&lt;br /&gt;ArrayList list = new ArrayList(5);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;public void remove(int index){&lt;br /&gt;list.remove(index);&lt;br /&gt;&lt;/span&gt;}&lt;span class="answers"&gt;&lt;br /&gt;&lt;br /&gt;public void add(Object obj){&lt;br /&gt;list.add(obj);&lt;br /&gt;&lt;/span&gt;}&lt;span class="answers"&gt;&lt;br /&gt;&lt;br /&gt;public void display(){&lt;br /&gt;System.out.println(list);&lt;br /&gt;&lt;/span&gt;}&lt;span class="answers"&gt;&lt;br /&gt;&lt;br /&gt;public static void main(String[] args)&lt;br /&gt;&lt;/span&gt;{&lt;span class="answers"&gt;&lt;br /&gt;TestCallByRefWithObject test = new TestCallByRefWithObject();&lt;br /&gt;&lt;br /&gt;test.add("1");&lt;br /&gt;test.add("2");&lt;br /&gt;test.add("3");&lt;br /&gt;test.add("4");&lt;br /&gt;test.add("5");&lt;br /&gt;&lt;br /&gt;test.remove(4);&lt;br /&gt;test.display();&lt;br /&gt;&lt;/span&gt;}&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt;}&lt;span class="answers"&gt;&lt;br /&gt;&lt;br /&gt;b) And now what is the output of:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;import java.util.*;&lt;br /&gt;&lt;br /&gt;class TestCallByRefWithInt&lt;br /&gt;&lt;/span&gt;{&lt;span class="answers"&gt;&lt;br /&gt;int i = 5;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;public void decrement(int i){&lt;br /&gt;i--;&lt;br /&gt;&lt;/span&gt;}&lt;span class="answers"&gt;&lt;br /&gt;&lt;br /&gt;public void increment(int i){&lt;br /&gt;i++;&lt;br /&gt;&lt;/span&gt;}&lt;span class="answers"&gt;&lt;br /&gt;&lt;br /&gt;public void display(){&lt;br /&gt;System.out.println("\nValue of i is : " +i);&lt;br /&gt;&lt;/span&gt;}&lt;span class="answers"&gt;&lt;br /&gt;&lt;br /&gt;public static void main(String[] args)&lt;br /&gt;&lt;/span&gt;{&lt;span class="answers"&gt;&lt;br /&gt;TestCallByRefWithInt test = new TestCallByRefWithInt();&lt;br /&gt;&lt;br /&gt;test.increment(test.i);&lt;br /&gt;&lt;br /&gt;test.display();&lt;br /&gt;&lt;/span&gt;}&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt;}&lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;Why Thread is faster compare to process? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;A thread is never faster than a process. If you run a thread(say there's  a process which has spawned only one thread) in one JVM and a process in  another and that both of them require same resources then both of them  would take same time to execute. But, when a program/Application is  thread based(remember here there will be multiple threads running for a  single process) then definetly a thread based appliation/program is  faster than a process based application. This is because, when ever a  process requires or waits for a resource CPU takes it out of the  critical section and allocates the mutex to another process.&lt;br /&gt;Before deallocating the ealier one, it stores the context(till what  state did it execute that process) in registers. Now if this deallocated  process has to come back and execute as it has got the resource for  which it was waiting, then it can't go into critical section directly.  CPU asks that process to follow scheduling algorithm. So this process  has to wait again for its turn. While in the case of thread based  application, the application is still with CPU only that thread which  requires some resource goes out, but its co threads(of same process/apllication)  are still in the critical section. Hence it directly comes back to the  CPU and does not wait outside. Hence an application which is thread  based is faster than an application which is process based.&lt;br /&gt;Be sure that its not the competion between thread and process, its  between an application which is thread based or process based. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;When and How is an object considered as Garbage by a GC? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;An object is considered garbage when it can no longer be reached from  any pointer in the running program. The most straightforward garbage  collection algorithms simply iterate over every reachable object. Any  objects left over are then considered garbage.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;span class="answers"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="answers"&gt;&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7755322426755379694-1503993102544771902?l=java7861.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://java7861.blogspot.com/feeds/1503993102544771902/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7755322426755379694&amp;postID=1503993102544771902' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7755322426755379694/posts/default/1503993102544771902'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7755322426755379694/posts/default/1503993102544771902'/><link rel='alternate' type='text/html' href='http://java7861.blogspot.com/2007/05/java-faq-4.html' title='java faq 4'/><author><name>prashanth</name><uri>http://www.blogger.com/profile/07711599595106933499</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7755322426755379694.post-5275135453986865550</id><published>2007-05-29T10:17:00.000-07:00</published><updated>2007-05-29T10:27:03.106-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='java faqs 5'/><title type='text'>java faqs5</title><content type='html'>&lt;h2&gt;&lt;span class="heading_2"&gt;Java Interview Questions And Answers&lt;/span&gt;&lt;span style="font-weight: 400;"&gt;&lt;span style=";font-family:Arial;font-size:100%;"  &gt;  &lt;span class="small_headings"&gt;[Java Frequently Asked  Questions ,Java FAQ ] &lt;a href="http://www.addthis.com/bookmark.php" onclick="addthis_url   = location.href; addthis_title = document.title; return addthis_click(this);" target="_blank"&gt;&lt;img src="http://s7.addthis.com/button2-bm.png" alt="AddThis Social Bookmark Button" border="0" height="24" width="160" /&gt;&lt;/a&gt; &lt;script type="text/javascript"&gt;var addthis_pub = 'leopez';&lt;/script&gt;&lt;script type="text/javascript" src="http://s7.addthis.com/js/widget.php?v=10"&gt;&lt;/script&gt;   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt; &lt;b&gt;&lt;span class="for_questions_blue"&gt;What are generations in Garbage Collection  terminology? What is its relevance?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;Garbage Collectors make assumptions about how our application runs. Most  common assumption is that an object is most likely to die shortly after  it was created: called infant mortality. This assumes that an object  that has been around for a while, will likely stay around for a while.  GC organizes objects into generations (young, tenured, and perm). This  tells that if an object lives for more than certain period of time it is  moved from one generation to another generations( say from young -&gt;  tenured -&gt; permanent). Hence GC will be run more frequently at the young  generations and rarely at permanent generations. This reduces the  overhead on GC and gives faster response time. &lt;/span&gt; &lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;What is a Throughput Collector? &lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;The throughput collector is a generational collector similar to the  default collector but with multiple threads used to do the minor  collection. The major collections are essentially the same as with the  default collector. By default on a host with N CPUs, the throughput  collector uses N garbage collector threads in the collection. The number  of garbage collector threads can be controlled with a command line  option. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;When to Use the Throughput Collector?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Use the throughput collector when you want to improve the performance of  your application with larger numbers of processors. In the default  collector garbage collection is done by one thread, and therefore  garbage collection adds to the serial execution time of the application.  The throughput collector uses multiple threads to execute a minor  collection and so reduces the serial execution time of the application.  A typical situation is one in which the application has a large number  of threads allocating objects. In such an application it is often the  case that a large young generation is needed&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt; &lt;span class="for_questions_blue"&gt;What is Aggressive Heap? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The -XX:+AggressiveHeap option inspects the machine resources (size of  memory and number of processors) and attempts to set various parameters  to be optimal for long-running, memory allocation-intensive jobs. It was  originally intended for machines with large amounts of memory and a  large number of CPUs, but in the J2SE platform, version 1.4.1 and later  it has shown itself to be useful even on four processor machines. With  this option the throughput collector (-XX:+UseParallelGC) is used along  with adaptive sizing (-XX:+UseAdaptiveSizePolicy). The physical memory  on the machines must be at least 256MB before Aggressive Heap can be  used. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is a Concurrent Low Pause Collector? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The concurrent low pause collector is a generational collector similar  to the default collector. The tenured generation is collected  concurrently with this collector. This collector attempts to reduce the  pause times needed to collect the tenured generation. It uses a separate  garbage collector thread to do parts of the major collection  concurrently with the applications threads. The concurrent collector is  enabled with the command line option -XX:+UseConcMarkSweepGC. For each  major collection the concurrent collector will pause all the application  threads for a brief period at the beginning of the collection and toward  the middle of the collection. The second pause tends to be the longer of  the two pauses and multiple threads are used to do the collection work  during that pause. The remainder of the collection is done with a  garbage collector thread that runs concurrently with the application.  The minor collections are done in a manner similar to the default  collector, and multiple threads can optionally be used to do the minor  collection. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;When to Use the Concurrent Low Pause Collector?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Use the concurrent low pause collector if your application would benefit  from shorter garbage collector pauses and can afford to share processor  resources with the garbage collector when the application is running.  Typically applications which have a relatively large set of long-lived  data (a large tenured generation), and run on machines with two or more  processors tend to benefit from the use of this collector. However, this  collector should be considered for any application with a low pause time  requirement. Optimal results have been observed for interactive  applications with tenured generations of a modest size on a single  processor. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is Incremental Low Pause Collector? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The incremental low pause collector is a generational collector similar  to the default collector. The minor collections are done with the same  young generation collector as the default collector. Do not use either -XX:+UseParallelGC  or -XX:+UseParNewGC with this collector. The major collections are done  incrementally on the tenured generation. This collector (also known as  the train collector) collects portions of the tenured generation at each  minor collection. The goal of the incremental collector is to avoid very  long major collection pauses by doing portions of the major collection  work at each minor collection. The incremental collector will sometimes  find that a non-incremental major collection (as is done in the default  collector) is required in order to avoid running out of memory. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;When to Use the Incremental Low Pause Collector?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Use the incremental low pause collector when your application can afford  to trade longer and more frequent young generation garbage collection  pauses for shorter tenured generation pauses. A typical situation is one  in which a larger tenured generation is required (lots of long-lived  objects), a smaller young generation will suffice (most objects are  short-lived and don't survive the young generation collection), and only  a single processor is available. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;How do you enable the concurrent garbage collector on Sun's JVM? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;-Xconcgc options allows us to use concurrent garbage collector  (1.2.2_07+)we can also use -XX:+UseConcMarkSweepGC which is available  beginning with J2SE 1.4.1.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is a platform? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A platform is the hardware or software environment in which a program  runs. Most platforms can be described as a combination of the operating  system and hardware, like Windows 2000 and XP, Linux, Solaris, and MacOS. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is transient variable? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Transient variable can't be serialize. For example if a variable is  declared as transient in a Serializable class and the class is written  to an ObjectStream, the value of the variable can't be written to the  stream instead when the class is retrieved from the ObjectStream the  value of the variable becomes null&lt;/span&gt;&lt;/p&gt;&lt;h2&gt;&lt;span class="heading_2"&gt;Java Interview Questions And Answers&lt;/span&gt;&lt;span style="font-weight: 400;"&gt;&lt;span style=";font-family:Arial;font-size:100%;"  &gt;  &lt;span class="small_headings"&gt;[Java Frequently Asked  Questions ,Java FAQ ] &lt;a href="http://www.addthis.com/bookmark.php" onclick="addthis_url   = location.href; addthis_title = document.title; return addthis_click(this);" target="_blank"&gt;&lt;img src="http://s7.addthis.com/button2-bm.png" alt="AddThis Social Bookmark Button" border="0" height="24" width="160" /&gt;&lt;/a&gt; &lt;script type="text/javascript"&gt;var addthis_pub = 'leopez';&lt;/script&gt;&lt;script type="text/javascript" src="http://s7.addthis.com/js/widget.php?v=10"&gt;&lt;/script&gt;   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt; &lt;b&gt;&lt;span class="for_questions_blue"&gt;How to make a class or a bean serializable?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;By implementing either the java.io.Serializable interface, or the  java.io.Externalizable interface. As long as one class in a class's  inheritance hierarchy implements Serializable or Externalizable, that  class is serializable. &lt;/span&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What restrictions are placed on method overloading? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;Two methods may not have the same name and argument list but different  return types. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Name Container classes. &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Window, Frame, Dialog, FileDialog, Panel, Applet, or ScrollPane &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the List interface? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The List interface provides support for ordered collections of objects. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the difference between a Scrollbar and a ScrollPane? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A Scrollbar is a Component, but not a Container. A ScrollPane is a  Container. A ScrollPane handles its own events and performs its own  scrolling. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is tunnelling? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Tunnelling is a route to somewhere. For example, RMI tunnelling is a way  to make RMI application get through firewall. In CS world, tunnelling  means a way to transfer data. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is meant by "Abstract Interface"?  &lt;/span&gt; &lt;/b&gt;&lt;span class="for_questions_blue"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="answers"&gt;First, an interface is abstract. That means you cannot have any  implementation in an interface. All the methods declared in an interface  are abstract methods or signatures of the methods.&lt;/span&gt;&lt;/p&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;Can Java code be compiled to machine dependent executable file?&lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;Yes. There are many tools out there. If you did so, the generated exe  file would be run in the specific platform, not cross-platform. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;Do not use the String contatenation operator in lengthy loops or other  places where performance could suffer. Is that true? &lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;Yes. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What method is used to specify a container's layout? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The setLayout() method is used to specify a container's layout. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Which containers use a FlowLayout as their default layout? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The Panel and Applet classes use the FlowLayout as their default layout. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What state does a thread enter when it terminates its processing? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;When a thread terminates its processing, it enters the dead state.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the Collections API? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The Collections API is a set of classes and interfaces that support  operations on collections of objects. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the List interface? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The List interface provides support for ordered collections of objects. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Is sizeof a keyword? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The sizeof operator is not a keyword in Java. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Which class is the superclass for every class. &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Object. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Which Container method is used to cause a container to be laid out and  redisplayed? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;validate()&lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What's the difference between a queue and a stack? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Stacks works by last-in-first-out rule (LIFO), while queues use the FIFO  rule&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What comes to mind when you hear about a young generation in Java? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Garbage collection.&lt;/span&gt;&lt;/p&gt;&lt;h2&gt;&lt;span class="heading_2"&gt;Java Interview Questions And Answers&lt;/span&gt;&lt;span style="font-weight: 400;"&gt;&lt;span style=";font-family:Arial;font-size:100%;"  &gt;  &lt;span class="small_headings"&gt;[Java Frequently Asked  Questions ,Java FAQ ] &lt;a href="http://www.addthis.com/bookmark.php" onclick="addthis_url   = location.href; addthis_title = document.title; return addthis_click(this);" target="_blank"&gt;&lt;img src="http://s7.addthis.com/button2-bm.png" alt="AddThis Social Bookmark Button" border="0" height="24" width="160" /&gt;&lt;/a&gt; &lt;script type="text/javascript"&gt;var addthis_pub = 'leopez';&lt;/script&gt;&lt;script type="text/javascript" src="http://s7.addthis.com/js/widget.php?v=10"&gt;&lt;/script&gt;   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt; &lt;b&gt;&lt;span class="for_questions_blue"&gt;You can create an abstract class that  contains only abstract methods. On the other hand, you can create an  interface that declares the same methods. So can you use abstract  classes instead of interfaces?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;Sometimes. But your class may be a descendent of another class and in  this case the interface is your only option.&lt;/span&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;What comes to mind when someone mentions a shallow copy in Java? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;Object cloning. &lt;/span&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;If you're overriding the method equals() of an object, which other  method you might also consider? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;hashCode() &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;You are planning to do an indexed search in a list of objects. Which of  the two Java collections should you use: ArrayList or LinkedList?&lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;ArrayList &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How would you make a copy of an entire Java object with its state? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Have this class implement Cloneable interface and call its method  clone(). &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How can you minimize the need of garbage collection and make the memory  use more effective? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Use object pooling and weak object references. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;There are two classes: A and B. The class B need to inform a class A  when some important event has happened. What Java technique would you  use to implement it? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;If these classes are threads I'd consider notify() or notifyAll(). For  regular classes you can use the Observer interface. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What access level do you need to specify in the class declaration to  ensure that only classes from the same directory can access it? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;You do not need to specify any access level, and Java will use a default  package access level.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is the difference between an Interface and an Abstract class?&lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;An abstract class can have instance methods that implement a default  behavior. An Interface can only declare constants and instance methods,  but cannot implement default behavior and all methods are implicitly  abstract. An interface has all public members and no implementation. An  abstract class is a class which may have the usual flavors of class  members (private, protected, etc.), but has some abstract methods.  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the purpose of garbage collection in Java, and when is it used? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The purpose of garbage collection is to identify and discard objects  that are no longer needed by a program so that their resources can be  reclaimed and reused. A Java object is subject to garbage collection  when it becomes unreachable to the program in which it is used. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Describe synchronization in respect to multithreading. &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;With respect to multithreading, synchronization is the capability to  control the access of multiple threads to shared resources. Without  synchonization, it is possible for one thread to modify a shared  variable while another thread is in the process of using or updating  same shared variable. This usually leads to significant errors. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Explain different way of using thread? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The thread could be implemented by using runnable interface or by  inheriting from the Thread class. The former is more advantageous,  'cause when you are going for multiple inheritance..the only interface  can help. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What are pass by reference and passby value?&lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;Pass By Reference means the passing the address itself rather than  passing the value. Passby Value means passing a copy of the value to be  passed.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is HashMap and Map? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;Map is Interface and Hashmap is class that implements that. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Difference between HashMap and HashTable? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The HashMap class is roughly equivalent to Hashtable, except that it is  unsynchronized and permits nulls. (HashMap allows null values as key and  value whereas Hashtable doesnt allow). HashMap does not guarantee that  the order of the map will remain constant over time. HashMap is  unsynchronized and Hashtable is synchronized.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;Difference between Vector and ArrayList? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;Vector is synchronized whereas arraylist is not.&lt;/span&gt;&lt;/p&gt; &lt;span style="font-weight: 400;"&gt;&lt;span style="font-size:100%;"&gt;&lt;script type="text/javascript"&gt;&lt;!-- google_ad_client = "pub-7003540323320880"; google_ad_width = 336; google_ad_height = 280; google_ad_format = "336x280_as"; google_ad_type = "text";  google_ad_channel = "6397297927"; google_color_border = "FFFFFF"; google_color_bg = "FFFFFF"; google_color_link = "0000FF"; google_color_text = "000000"; google_color_url = "191919"; //--&gt; &lt;/script&gt; &lt;script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt; &lt;/script&gt;&lt;iframe name="google_ads_frame" src="http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-7003540323320880&amp;dt=1180459139562&amp;amp;lmt=1180150007&amp;prev_fmts=336x280_as&amp;amp;format=336x280_as&amp;output=html&amp;amp;amp;correlator=1180459137437&amp;channel=6397297927&amp;amp;url=http%3A%2F%2Ftechpreparation.com%2Fcomputer-interview-questions%2Fjava-interview-questions-answers34.htm&amp;color_bg=FFFFFF&amp;amp;amp;color_text=000000&amp;color_link=0000FF&amp;amp;color_url=191919&amp;color_border=FFFFFF&amp;amp;ad_type=text&amp;ref=http%3A%2F%2Ftechpreparation.com%2Fcomputer-interview-questions%2Fjava-interview-questions-answers33.htm&amp;amp;cc=40&amp;flash=9&amp;amp;amp;u_h=768&amp;u_w=1024&amp;amp;u_ah=738&amp;u_aw=1024&amp;amp;u_cd=32&amp;u_tz=330&amp;amp;u_his=38&amp;u_java=true&amp;amp;u_nplug=23&amp;u_nmime=91" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" frameborder="0" height="280" scrolling="no" width="336"&gt;&lt;/iframe&gt;&lt;/span&gt;&lt;/span&gt;&lt;h2&gt;&lt;span class="heading_2"&gt;Java Interview Questions And Answers&lt;/span&gt;&lt;span style="font-weight: 400;"&gt;&lt;span style=";font-family:Arial;font-size:100%;"  &gt;  &lt;span class="small_headings"&gt;[Java Frequently Asked  Questions ,Java FAQ ] &lt;a href="http://www.addthis.com/bookmark.php" onclick="addthis_url   = location.href; addthis_title = document.title; return addthis_click(this);" target="_blank"&gt;&lt;img src="http://s7.addthis.com/button2-bm.png" alt="AddThis Social Bookmark Button" border="0" height="24" width="160" /&gt;&lt;/a&gt; &lt;script type="text/javascript"&gt;var addthis_pub = 'leopez';&lt;/script&gt;&lt;script type="text/javascript" src="http://s7.addthis.com/js/widget.php?v=10"&gt;&lt;/script&gt;   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt; &lt;b&gt;&lt;span class="for_questions_blue"&gt;Difference between Swing and AWT?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;AWT are heavy-weight components. Swings are light-weight components.  Hence swing works faster than AWT. &lt;/span&gt; &lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;What is the difference between a constructor and a method? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;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.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is an Iterator? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Some of the collection classes provide traversal of their contents via a  java.util.Iterator interface. This interface allows you to walk through  a collection of objects, operating on each object in turn. Remember when  using Iterators that they contain a snapshot of the collection at the  time the Iterator was obtained; generally it is not advisable to modify  the collection itself while traversing an Iterator. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;State the significance of public, private, protected, default modifiers  both singly and in combination and state the effect of package  relationships on declared items qualified by these modifiers. &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;public : Public class is visible in other packages, field is visible  everywhere (class must be public too) private : Private variables or  methods may be used only by an instance of the same class that declares  the variable or method, A private feature may only be accessed by the  class that owns the feature. protected : Is available to all classes in  the same package and also available to all subclasses of the class that  owns the protected feature. This access is provided even to subclasses  that reside in a different package from the class that owns the  protected feature. default :What you get by default ie, without any  access modifier (ie, public private or protected). It means that it is  visible to all within a particular package. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is an abstract class? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Abstract class must be extended/subclassed (to be useful). It serves as  a template. A class that is abstract may not be instantiated (ie, you  may not call its constructor), abstract class may contain static data.  Any class with an abstract method is automatically abstract itself, and  must be declared as such.&lt;br /&gt;A class may be declared abstract even if it has no abstract methods.  This prevents it from being instantiated. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is static in java? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Static means one per class, not one for each object no matter how many  instance of a class might exist. This means that you can use them  without creating an instance of a class. Static methods are implicitly  final, because overriding is done based on the type of the object, and  static methods are attached to a class, not an object. A static method  in a super class can be shadowed by another static method in a subclass,  as long as the original method was not declared final. However, you  can't override a static method with a no static method. In other words,  you can't change a static method into an instance method in a subclass. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is final? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A final class can't be extended ie., final class may not be subclassed.  A final method can't be overridden when its class is inherited. You  can't change value of a final variable (is a constant). &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What if the main method is declared as private? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The program compiles properly but at runtime it will give "Main method  not public." message. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What if the static modifier is removed from the signature of the main  method? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Program compiles. But at runtime throws an error "NoSuchMethodError". &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What if I write static public void instead of public static void? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Program compiles and runs properly. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What if I do not provide the String array as the argument to the method? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Program compiles but throws a runtime error "NoSuchMethodError".  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the first argument of the String array in main method? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The String array is empty. It does not have any element. This is unlike  C/C++ where the first element by default is the program name.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;If I do not provide any arguments on the command line, then the  String array of Main method will be empty or null? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;It is empty. But not null. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;How can one prove that the array is not null but empty using one line of  code? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Print args.length. It will print 0. That means it is empty. But if it  would have been null then it would have thrown a NullPointerException on  attempting to print args.length.  &lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;h2&gt;&lt;span class="heading_2"&gt;Java Interview Questions And Answers&lt;/span&gt;&lt;span style="font-weight: 400;"&gt;&lt;span style=";font-family:Arial;font-size:100%;"  &gt;  &lt;span class="small_headings"&gt;[Java Frequently Asked  Questions ,Java FAQ ] &lt;a href="http://www.addthis.com/bookmark.php" onclick="addthis_url   = location.href; addthis_title = document.title; return addthis_click(this);" target="_blank"&gt;&lt;img src="http://s7.addthis.com/button2-bm.png" alt="AddThis Social Bookmark Button" border="0" height="24" width="160" /&gt;&lt;/a&gt; &lt;script type="text/javascript"&gt;var addthis_pub = 'leopez';&lt;/script&gt;&lt;script type="text/javascript" src="http://s7.addthis.com/js/widget.php?v=10"&gt;&lt;/script&gt;   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt; &lt;b&gt;&lt;span class="for_questions_blue"&gt;Can an application have multiple classes  having main method?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;Yes it is possible. While starting the application we mention the class  name to be run. The JVM will look for the Main method only in the class  whose name you have mentioned. Hence there is not conflict amongst the  multiple classes having main method.&lt;/span&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;Can I have multiple main methods in the same class? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;No the program fails to compile. The compiler says that the main method  is already defined in the class. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Do I need to import java.lang package any time? Why ?  &lt;/span&gt; &lt;/b&gt;&lt;span class="for_questions_blue"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="answers"&gt;No. It is by default loaded internally by the JVM. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Can I import same package/class twice? Will the JVM load the package  twice at runtime? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;One can import the same package or same class multiple times. Neither  compiler nor JVM complains abt it. And the JVM will internally load the  class only once no matter how many times you import the same class. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What are Checked and UnChecked Exception? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A checked exception is some subclass of Exception (or Exception itself),  excluding class RuntimeException and its subclasses. Making an exception  checked forces client programmers to deal with the possibility that the  exception will be thrown. eg, IOException thrown by  java.io.FileInputStream's read() method· Unchecked exceptions are  RuntimeException and any of its subclasses. Class Error and its  subclasses also are unchecked. With an unchecked exception, however, the  compiler doesn't force client programmers either to catch the exception  or declare it in a throws clause. In fact, client programmers may not  even know that the exception could be thrown. eg,  StringIndexOutOfBoundsException thrown by String's charAt() method·  Checked exceptions must be caught at compile time. Runtime exceptions do  not need to be. Errors often cannot be. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is Overriding? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;When a class defines a method using the same name, return type, and  arguments as a method in its superclass, the method in the class  overrides the method in the superclass.&lt;br /&gt;When the method is invoked for an object of the class, it is the new  definition of the method that is called, and not the method definition  from superclass. Methods may be overridden to be more public, not more  private. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What are different types of inner classes?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Nested top-level classes, Member classes, Local classes, Anonymous  classes&lt;br /&gt;&lt;br /&gt;Nested top-level classes- If you declare a class within a class and  specify the static modifier, the compiler treats the class just like any  other top-level class.&lt;br /&gt;Any class outside the declaring class accesses the nested class with the  declaring class name acting similarly to a package. eg, outer.inner.  Top-level inner classes implicitly have access only to static  variables.There can also be inner interfaces. All of these are of the  nested top-level variety.&lt;br /&gt;&lt;br /&gt;Member classes - Member inner classes are just like other member methods  and member variables and access to the member class is restricted, just  like methods and variables. This means a public member class acts  similarly to a nested top-level class. The primary difference between  member classes and nested top-level classes is that member classes have  access to the specific instance of the enclosing class.&lt;br /&gt;&lt;br /&gt;Local classes - Local classes are like local variables, specific to a  block of code. Their visibility is only within the block of their  declaration. In order for the class to be useful beyond the declaration  block, it would need to implement a more publicly available  interface.Because local classes are not members, the modifiers public,  protected, private, and static are not usable.&lt;br /&gt;&lt;br /&gt;Anonymous classes - Anonymous inner classes extend local inner classes  one level further. As anonymous classes have no name, you cannot provide  a constructor.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Are the imports checked for validity at compile time? e.g. will the code  containing an import such as java.lang.ABCD compile? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Yes the imports are checked for the semantic validity at compile time.  The code containing above line of import will not compile. It will throw  an error saying,can not resolve symbol&lt;br /&gt;symbol : class ABCD&lt;br /&gt;location: package io&lt;br /&gt;import java.io.ABCD; &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;Does importing a package imports the subpackages as well? e.g. Does  importing com.MyTest.* also import com.MyTest.UnitTests.*?&lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;No you will have to import the subpackages explicitly. Importing  com.MyTest.* will import classes in the package MyTest only. It will not  import any class in any of it's subpackage. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between declaring a variable and defining a  variable? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;In declaration we just mention the type of the variable and it's name.  We do not initialize it. But defining means declaration +  initialization.&lt;br /&gt;e.g String s; is just a declaration while String s = new String ("abcd");  Or String s = "abcd"; are both definitions. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the default value of an object reference declared as an instance  variable? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Null unless we define it explicitly.  &lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;h2&gt;&lt;span class="heading_2"&gt;Java Interview Questions And Answers&lt;/span&gt;&lt;span style="font-weight: 400;"&gt;&lt;span style=";font-family:Arial;font-size:100%;"  &gt;  &lt;span class="small_headings"&gt;[Java Frequently Asked  Questions ,Java FAQ ] &lt;a href="http://www.addthis.com/bookmark.php" onclick="addthis_url   = location.href; addthis_title = document.title; return addthis_click(this);" target="_blank"&gt;&lt;img src="http://s7.addthis.com/button2-bm.png" alt="AddThis Social Bookmark Button" border="0" height="24" width="160" /&gt;&lt;/a&gt; &lt;script type="text/javascript"&gt;var addthis_pub = 'leopez';&lt;/script&gt;&lt;script type="text/javascript" src="http://s7.addthis.com/js/widget.php?v=10"&gt;&lt;/script&gt;   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt; &lt;b&gt;&lt;span class="for_questions_blue"&gt;Can a top level class be private or  protected?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;No. A top level class can not be private or protected. It can have  either "public" or no modifier. If it does not have a modifier it is  supposed to have a default access.If a top level class is declared as  private the compiler will complain that the "modifier private is not  allowed here". This means that a top level class can not be private.  Same is the case with protected.&lt;/span&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;What type of parameter passing does Java support? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;In Java the arguments are always passed by value . &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Primitive data types are passed by reference or pass by value?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Primitive data types are passed by value. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Objects are passed by value or by reference?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Java only supports pass by value. With objects, the object reference  itself is passed by value and so both the original reference and  parameter copy both refer to the same object . &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is serialization? &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Serialization is a mechanism by which you can save the state of an  object by converting it to a byte stream. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;How do I serialize an object to a file?  &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;The class whose instances are to be serialized should implement an  interface Serializable. Then you pass the instance to the  ObjectOutputStream which is connected to a fileoutputstream. This will  save the object to a file.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Which methods of Serializable interface should I implement? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The serializable interface is an empty interface, it does not contain  any methods. So we do not implement any methods. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How can I customize the seralization process? i.e. how can one have a  control over the serialization process? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Yes it is possible to have control over serialization process. The class  should implement Externalizable interface. This interface contains two  methods namely readExternal and writeExternal. You should implement  these methods and write the logic for customizing the serialization  process. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is the common usage of serialization? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;Whenever an object is to be sent over the network, objects need to be  serialized. Moreover if the state of an object is to be saved, objects  need to be serilized. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is Externalizable interface? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;Externalizable is an interface which contains two methods readExternal  and writeExternal. These methods give you a control over the  serialization mechanism. Thus if your class implements this interface,  you can customize the serialization process by implementing these  methods. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;When you serialize an object, what happens to the object references  included in the object? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The serialization mechanism generates an object graph for serialization.  Thus it determines whether the included object references are  serializable or not. This is a recursive process. Thus when an object is  serialized, all the included objects are also serialized alongwith the  original obect.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What one should take care of while serializing the object? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;One should make sure that all the included objects are also serializable.  If any of the objects is not serializable then it throws a  NotSerializableException. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What happens to the static fields of a class during serialization? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;There are three exceptions in which serialization doesnot necessarily  read and write to the stream. These are&lt;br /&gt;1. Serialization ignores static fields, because they are not part of ay  particular state state.&lt;br /&gt;2. Base class fields are only hendled if the base class itself is  serializable.&lt;br /&gt;3. Transient fields.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Does Java provide any construct to find out the size of an object? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;No there is not sizeof operator in Java. So there is not direct way to  determine the size of an object directly in Java.&lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are wrapper classes? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Java provides specialized classes corresponding to each of the primitive  data types. These are called wrapper classes. They are e.g. Integer,  Character, Double etc.&lt;/span&gt; &lt;/p&gt; &lt;span style="font-weight: 400;"&gt;&lt;span style="font-size:100%;"&gt;&lt;script type="text/javascript"&gt;&lt;!-- google_ad_client = "pub-7003540323320880"; google_ad_width = 336; google_ad_height = 280; google_ad_format = "336x280_as"; google_ad_type = "text";  google_ad_channel = "6397297927"; google_color_border = "FFFFFF"; google_color_bg = "FFFFFF"; google_color_link = "0000FF"; google_color_text = "000000"; google_color_url = "191919"; //--&gt;&lt;/script&gt;&lt;script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;&lt;/script&gt;&lt;iframe name="google_ads_frame" src="http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-7003540323320880&amp;dt=1180459219828&amp;amp;lmt=1180150022&amp;prev_fmts=336x280_as&amp;amp;format=336x280_as&amp;output=html&amp;amp;amp;correlator=1180459217671&amp;channel=6397297927&amp;amp;url=http%3A%2F%2Ftechpreparation.com%2Fcomputer-interview-questions%2Fjava-interview-questions-answers37.htm&amp;color_bg=FFFFFF&amp;amp;amp;color_text=000000&amp;color_link=0000FF&amp;amp;color_url=191919&amp;color_border=FFFFFF&amp;amp;ad_type=text&amp;ref=http%3A%2F%2Ftechpreparation.com%2Fcomputer-interview-questions%2Fjava-interview-questions-answers36.htm&amp;amp;cc=41&amp;flash=9&amp;amp;amp;u_h=768&amp;u_w=1024&amp;amp;u_ah=738&amp;u_aw=1024&amp;amp;u_cd=32&amp;u_tz=330&amp;amp;u_his=41&amp;u_java=true&amp;amp;u_nplug=23&amp;u_nmime=91" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" frameborder="0" height="280" scrolling="no" width="336"&gt;&amp;amp;amp;amp;lt;br&amp;amp;amp;gt;&lt;/iframe&gt;&lt;/span&gt;&lt;/span&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;h2&gt;&lt;span class="heading_2"&gt;Java Interview Questions And Answers&lt;/span&gt;&lt;span style="font-weight: 400;"&gt;&lt;span style=";font-family:Arial;font-size:100%;"  &gt;  &lt;span class="small_headings"&gt;[Java Frequently Asked  Questions ,Java FAQ ] &lt;a href="http://www.addthis.com/bookmark.php" onclick="addthis_url   = location.href; addthis_title = document.title; return addthis_click(this);" target="_blank"&gt;&lt;img src="http://s7.addthis.com/button2-bm.png" alt="AddThis Social Bookmark Button" border="0" height="24" width="160" /&gt;&lt;/a&gt; &lt;script type="text/javascript"&gt;var addthis_pub = 'leopez';&lt;/script&gt;&lt;script type="text/javascript" src="http://s7.addthis.com/js/widget.php?v=10"&gt;&lt;/script&gt;   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt; &lt;b&gt;&lt;span class="for_questions_blue"&gt;Give a simplest way to find out the time a  method takes for execution without using any profiling tool?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;Read the system time just before the method is invoked and immediately  after method returns. Take the time difference, which will give you the  time taken by a method for execution.&lt;br /&gt;&lt;br /&gt;To put it in code...&lt;br /&gt;long start = System.currentTimeMillis ();&lt;br /&gt;method ();&lt;br /&gt;long end = System.currentTimeMillis ();&lt;br /&gt;&lt;br /&gt;System.out.println ("Time taken for execution is " + (end - start));&lt;br /&gt;&lt;br /&gt;Remember that if the time taken for execution is too small, it might  show that it is taking zero milliseconds for execution. Try it on a  method which is big enough, in the sense the one which is doing  considerable amount of processing.&lt;/span&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;Why do we need wrapper classes? &lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;It is sometimes easier to deal with primitives as objects. Moreover most  of the collection classes store objects and not primitive data types.  And also the wrapper classes provide many utility methods also. Because  of these reasons we need wrapper classes. And since we create instances  of these classes we can store them in any of the collection classes and  pass them around as a collection. Also we can pass them around as method  parameters where a method expects an object. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are checked exceptions? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Checked exception are those which the Java compiler forces you to catch.  e.g. IOException are checked Exceptions. &lt;/span&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are runtime exceptions? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;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. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What is the difference between error and an exception? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;An error is an irrecoverable condition occurring at runtime. Such as  OutOfMemory error. These JVM errors and you can not repair them at  runtime. While exceptions are conditions that occur because of bad input  etc. e.g. FileNotFoundException will be thrown if the specified file  does not exist. Or a NullPointerException will take place if you try  using a null reference. In most of the cases it is possible to recover  from an exception (probably by giving user a feedback for entering  proper values etc.). &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How to create custom exceptions? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Your class should extend class Exception, or some more specific type  thereof. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;If I want an object of my class to be thrown as an exception object,  what should I do? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The class should extend from Exception class. Or you can extend your  class from some more precise exception type also. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;If my class already extends from some other class what should I do if I  want an instance of my class to be thrown as an exception object? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;One can not do anything in this scenario. Because Java does not allow  multiple inheritance and does not provide any exception interface as  well. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;How does an exception permeate through the code? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;An unhandled exception moves up the method stack in search of a matching  When an exception is thrown from a code which is wrapped in a try block  followed by one or more catch blocks, a search is made for matching  catch block. If a matching type is found then that block will be  invoked. If a matching type is not found then the exception moves up the  method stack and reaches the caller method. Same procedure is repeated  if the caller method is included in a try catch block. This process  continues until a catch block handling the appropriate type of exception  is found. If it does not find such a block then finally the program  terminates. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are the different ways to handle exceptions? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;There are two ways to handle exceptions,&lt;br /&gt;1. By wrapping the desired code in a try block followed by a catch block  to catch the exceptions. and&lt;br /&gt;2. List the desired exceptions in the throws clause of the method and  let the caller of the method handle those exceptions. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the basic difference between the 2 approaches to exception  handling.&lt;br /&gt;1. try catch block and&lt;br /&gt;2. specifying the candidate exceptions in the throws clause?&lt;br /&gt;When should you use which approach? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;In the first approach as a programmer of the method, you yourself are  dealing with the exception. This is fine if you are in a best position  to decide should be done in case of an exception. Whereas if it is not  the responsibility of the method to deal with it's own exceptions, then  do not use this approach. In this case use the second approach. In the  second approach we are forcing the caller of the method to catch the  exceptions, that the method is likely to throw. This is often the  approach library creators use. They list the exception in the throws  clause and we must catch them. You will find the same approach  throughout the java libraries we use.&lt;/span&gt; &lt;/p&gt; &lt;span style="font-weight: 400;"&gt;&lt;span style="font-size:100%;"&gt;&lt;script type="text/javascript"&gt;&lt;!-- google_ad_client = "pub-7003540323320880"; google_ad_width = 336; google_ad_height = 280; google_ad_format = "336x280_as"; google_ad_type = "text";  google_ad_channel = "6397297927"; google_color_border = "FFFFFF"; google_color_bg = "FFFFFF"; google_color_link = "0000FF"; google_color_text = "000000"; google_color_url = "191919"; //--&gt; &lt;/script&gt; &lt;script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt; &lt;/script&gt;&lt;iframe name="google_ads_frame" src="http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-7003540323320880&amp;dt=1180459237218&amp;amp;lmt=1180150023&amp;prev_fmts=336x280_as&amp;amp;format=336x280_as&amp;output=html&amp;amp;amp;correlator=1180459235093&amp;channel=6397297927&amp;amp;url=http%3A%2F%2Ftechpreparation.com%2Fcomputer-interview-questions%2Fjava-interview-questions-answers38.htm&amp;color_bg=FFFFFF&amp;amp;amp;color_text=000000&amp;color_link=0000FF&amp;amp;color_url=191919&amp;color_border=FFFFFF&amp;amp;ad_type=text&amp;ref=http%3A%2F%2Ftechpreparation.com%2Fcomputer-interview-questions%2Fjava-interview-questions-answers37.htm&amp;amp;cc=37&amp;flash=9&amp;amp;amp;u_h=768&amp;u_w=1024&amp;amp;u_ah=738&amp;u_aw=1024&amp;amp;u_cd=32&amp;u_tz=330&amp;amp;u_his=42&amp;u_java=true&amp;amp;u_nplug=23&amp;u_nmime=91" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" frameborder="0" height="280" scrolling="no" width="336"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Is it necessary that each try block must  be followed by a catch block?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;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.  And whatever exceptions are likely to be thrown should be declared in  the throws clause of the method.&lt;/span&gt;&lt;p&gt; &lt;span class="for_questions_blue"&gt;&lt;b&gt;If I write return at the end of the try block, will the finally block  still execute? &lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;Yes even if you write return as the last statement in the try block and  no exception occurs, the finally block will execute. The finally block  will execute and then the control return. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;If I write System.exit (0); at the end of the try block, will the  finally block still execute? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;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. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;How are Observer and Observable used?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Objects that subclass the Observable class maintain a list of observers.  When an Observable object is updated it invokes the update() method of  each of its observers to notify the observers that it has changed state.  The Observer interface is implemented by objects that observe Observable  objects. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is synchronization and why is it important?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;With respect to multithreading, synchronization is the capability to  control the access of multiple threads to shared resources. Without  synchronization, it is possible for one thread to modify a shared object  while another thread is in the process of using or updating that  object's value. This often leads to significant errors. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;How does Java handle integer overflows and underflows?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;It uses those low order bytes of the result that can fit into the size  of the type allowed by the operation. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Does garbage collection guarantee that a program will not run out of  memory? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;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 . &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the difference between preemptive scheduling and time slicing? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;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. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;When a thread is created and started, what is its initial state?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;A thread is in the ready state after it has been created and started. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What is the purpose of finalization?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The purpose of finalization is to give an unreachable object the  opportunity to perform any cleanup processing before the object is  garbage collected.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the Locale class? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The Locale class is used to tailor program output to the conventions of  a particular geographic, political, or cultural region. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between a while statement and a do statement? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A while statement checks at the beginning of a loop to see whether the  next loop iteration should occur. A do statement checks at the end of a  loop to see whether the next iteration of a loop should occur. The do  statement will always execute the body of a loop at least once. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between static and non-static variables? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;A static variable is associated with the class as a whole rather than  with specific instances of a class. Non-static variables take on unique  values with each object instance. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;How are this() and super() used with constructors? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;This() is used to invoke a constructor of the same class. super() is  used to invoke a superclass constructor. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are synchronized methods and synchronized statements? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Synchronized methods are methods that are used to control access to an  object. A thread only executes a synchronized method after it has  acquired the lock for the method's object or class. Synchronized  statements are similar to synchronized methods. A synchronized statement  can only be executed after a thread has acquired the lock for the object  or class referenced in the synchronized statement. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is daemon thread and which method is used to create the daemon  thread? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Daemon thread is a low priority thread which runs intermittently in the  back ground doing the garbage collection operation for the java runtime  system. setDaemon method is used to create a daemon thread.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Can applets communicate with each other?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;At this point in time applets may communicate with other applets running  in the same virtual machine. If the applets are of the same class, they  can communicate via shared static variables. If the applets are of  different classes, then each will need a reference to the same class  with static variables. In any case the basic idea is to pass the  information back and forth through a static variable.&lt;br /&gt;&lt;br /&gt;An applet can also get references to all other applets on the same page  using the getApplets() method of java.applet.AppletContext. Once you get  the reference to an applet, you can communicate with it by using its  public members.&lt;br /&gt;&lt;br /&gt;It is conceivable to have applets in different virtual machines that  talk to a server somewhere on the Internet and store any data that needs  to be serialized there. Then, when another applet needs this data, it  could connect to this same server. Implementing this is non-trivial.  &lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;What are the steps in the JDBC connection?&lt;/b&gt;&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;While making a JDBC connection we go through the following steps :&lt;br /&gt;Step 1 : Register the database driver by using :&lt;br /&gt;Class.forName(\" driver classs for that specific database\" );&lt;br /&gt;Step 2 : Now create a database connection using :&lt;br /&gt;Connection con = DriverManager.getConnection(url,username,password);&lt;br /&gt;Step 3: Now Create a query using :&lt;br /&gt;Statement stmt = Connection.Statement(\"select * from TABLE NAME\");&lt;br /&gt;Step 4 : Exceute the query :&lt;br /&gt;stmt.exceuteUpdate();  &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;How does a try statement determine which catch clause should be used to  handle an exception? &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;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  exceptionis executed. The remaining catch clauses are ignored. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Can an unreachable object become reachable again?  &lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;An unreachable object may become reachable again. This can happen when  the object's finalize() method is invoked and the object performs an  operation which causes it to become accessible to reachable objects.&lt;/span&gt;&lt;/p&gt; &lt;p&gt; &lt;b class="for_questions_blue"&gt;What method must be implemented by all threads? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;All tasks must implement the run() method, whether they are a subclass  of Thread or implement the Runnable interface. &lt;/span&gt;&lt;/p&gt; &lt;p&gt; &lt;b class="for_questions_blue"&gt;What are synchronized methods and synchronized statements? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Synchronized methods are methods that are used to control access to an  object. A thread only executes a synchronized method after it has  acquired the lock for the method's object or class. Synchronized  statements are similar to synchronized methods. A synchronized statement  can only be executed after a thread has acquired the lock for the object  or class referenced in the synchronized statement. &lt;/span&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt; &lt;b class="for_questions_blue"&gt;What is Externalizable? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Externalizable is an Interface that extends Serializable Interface. And  sends data into Streams in Compressed Format. It has two methods,  writeExternal(ObjectOuput out) and readExternal(ObjectInput in) &lt;/span&gt;&lt;/p&gt; &lt;p&gt; &lt;b class="for_questions_blue"&gt;What modifiers are allowed for methods in an Interface? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Only public and abstract modifiers are allowed for methods in  interfaces.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are some alternatives to inheritance? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Delegation is an alternative to inheritance. Delegation means that you  include an instance of another class as an instance variable, and  forward messages to the instance. It is often safer than inheritance  because it forces you to think about each message you forward, because  the instance is of a known class, rather than a new class, and because  it doesn't force you to accept all the methods of the super class: you  can provide only the methods that really make sense. On the other hand,  it makes you write more code, and it is harder to re-use (because it is  not a subclass).&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What does it mean that a method or field is "static"? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Static variables and methods are instantiated only once per class. In  other words they are class variables, not instance variables. If you  change the value of a static variable in a particular object, the value  of that variable changes for all instances of that class.&lt;br /&gt;Static methods can be referenced with the name of the class rather than  the name of a particular object of the class (though that works too).  That's how library methods like System.out.println() work out is a  static field in the java.lang.System class.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the difference between preemptive scheduling and time slicing? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;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.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the catch or declare rule for method declarations? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;If a checked exception may be thrown within the body of a method, the  method must either catch the exception or declare it in its throws  clause.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;Is Empty .java file a valid source file?&lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;span class="answers"&gt;Yes, an empty .java file is a perfectly valid source file.  &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;Can a .java file contain more than one java classes? &lt;/b&gt; &lt;/span&gt;&lt;span class="answers"&gt;&lt;br /&gt;Yes, a .java file contain more than one java classes, provided at the  most one of them is a public class.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Is String a primitive data type in Java? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;No String is not a primitive data type in Java, even though it is one of  the most extensively used object. Strings in Java are instances of  String class defined in java.lang package. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Is main a keyword in Java? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;No, main is not a keyword in Java. &lt;/span&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Is next a keyword in Java? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;No, next is not a keyword. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;Is delete a keyword in Java? &lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;No, delete is not a keyword in Java. Java does not make use of explicit  destructors the way C++ does. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span class="for_questions_blue"&gt;&lt;b&gt;Is exit a keyword in Java? &lt;/b&gt;&lt;/span&gt; &lt;span class="answers"&gt;&lt;br /&gt;No. To exit a program explicitly you use exit method in System object. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What happens if you don't initialize an instance variable of any of the  primitive types in Java? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Java by default initializes it to the default value for that primitive  type. Thus an int will be initialized to 0, a Boolean will be  initialized to false. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What will be the initial value of an object reference which is defined  as an instance variable? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;The object references are all initialized to null in Java. However in  order to do anything useful with these references, you must set them to  a valid object, else you will get NullPointerException everywhere you  try to use such default initialized references. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What are the different scopes for Java variables? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The scope of a Java variable is determined by the context in which the  variable is declared. Thus a java variable can have one of the three  scopes at any given point in time.&lt;br /&gt;1. Instance : - These are typical object level variables, they are  initialized to default values at the time of creation of object, and  remain accessible as long as the object accessible.&lt;br /&gt;2. Local : - These are the variables that are defined within a method.  They remain accessible only during the course of method execution. When  the method finishes execution, these variables fall out of scope.&lt;br /&gt;3. Static: - These are the class level variables. They are initialized  when the class is loaded in JVM for the first time and remain there as  long as the class remains loaded. They are not tied to any particular  object instance. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What is the default value of the local variables? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;The local variables are not initialized to any default value, neither  primitives nor object references. If you try to use these variables  without initializing them explicitly, the java compiler will not compile  the code. It will complain about the local variable not being  initialized.. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt; How many objects are created in the following piece of code? MyClass c1,  c2, c3;&lt;br /&gt;c1 = new MyClass ();&lt;br /&gt;c3 = new MyClass ();&lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;Only 2 objects are created, c1 and c3. The reference c2 is only declared  and not initialized. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can a public class MyClass be defined in a source file named  YourClass.java? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;No the source file name, if it contains a public class, must be the same  as the public class name itself with a .java extension. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;Can main method be declared final? &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;Yes, the main method can be declared final, in addition to being public  static. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span class="for_questions_blue"&gt;What will be the output of the following statement?&lt;br /&gt;System.out.println ("1" + 3); &lt;/span&gt; &lt;/b&gt; &lt;span class="answers"&gt;&lt;br /&gt;It will print 13. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;b class="for_questions_blue"&gt;What will be the default values of all the elements of an array defined  as an instance variable? &lt;/b&gt;&lt;span class="answers"&gt;&lt;br /&gt;If the array is an array of primitive types, then all the elements of  the array will be initialized to the default value corresponding to that  primitive type. e.g. All the elements of an array of int will be  initialized to 0, while that of Boolean type will be initialized to  false. Whereas if the array is an array of references (of any type), all  the elements will be initialized to null.&lt;/span&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;br /&gt;&lt;span class="answers"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="answers"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt; &lt;span style="font-weight: 400;"&gt;&lt;span style="font-size:100%;"&gt;&lt;script type="text/javascript"&gt;&lt;!-- google_ad_client = "pub-7003540323320880"; google_ad_width = 336; google_ad_height = 280; google_ad_format = "336x280_as"; google_ad_type = "text";  google_ad_channel = "6397297927"; google_color_border = "FFFFFF"; google_color_bg = "FFFFFF"; google_color_link = "0000FF"; google_color_text = "000000"; google_color_url = "191919"; //--&gt; &lt;/script&gt;&lt;script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;&lt;/script&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7755322426755379694-5275135453986865550?l=java7861.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://java7861.blogspot.com/feeds/5275135453986865550/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7755322426755379694&amp;postID=5275135453986865550' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7755322426755379694/posts/default/5275135453986865550'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7755322426755379694/posts/default/5275135453986865550'/><link rel='alternate' type='text/html' href='http://java7861.blogspot.com/2007/05/java-faqs5.html' title='java faqs5'/><author><name>prashanth</name><uri>http://www.blogger.com/profile/07711599595106933499</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
