core java + j2ee + j2se interview question and answer

Upload: sunnyhai1

Post on 03-Apr-2018

230 views

Category:

Documents


0 download

TRANSCRIPT

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    1/62

    1. What is a transient variable?

    A transient variable is a variable that may not be serialized.

    2. Which containers use a border Layout as their default layout?

    The window, Frame and Dialog classes use a border layout as their default layout.

    3. Why do threads block on I/O?

    Threads block on I/O (that is enters the waiting state) so that other threads may execute

    while the I/O Operation is performed.

    4. How are Observer and Observable used?

    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.

    5. What is synchronization and why is it important?

    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.

    6. Can a lock be acquired on a class?

    Yes, a lock can be acquired on a class. This lock is acquired on the class's Class object.

    7. What's new with the stop(), suspend() and resume() methods in JDK 1.2?

    The stop(), suspend() and resume() methods have been deprecated in JDK 1.2.

    8. Is null a keyword?

    The null value is not a keyword.9. What is the preferred size of a component?

    The preferred size of a component is the minimum component size that will allow the

    component to display normally.

    10. What method is used to specify a container's layout?

    The setLayout() method is used to specify a container's layout.

    11. Which containers use a FlowLayout as their default layout?

    The Panel and Applet classes use the FlowLayout as their default layout.

    12. What state does a thread enter when it terminates its processing?

    When a thread terminates its processing, it enters the dead state.

    13. What is the Collections API?

    The Collections API is a set of classes and interfaces that support operations on collections

    of objects.

    14. which characters may be used as the second character of an identifier, but not as

    the first character of an identifier?

    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.

    15. What is the List interface?

    The List interface provides support for ordered collections of objects.

    16. How does Java handle integer overflows and underflows?

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    2/62

    It uses those low order bytes of the result that can fit into the size of the type allowed by the

    operation.

    17. What is the Vector class?

    The Vector class provides the capability to implement a growable array of objects

    18. What modifiers may be used with an inner class that is a member of an outer class?

    A (non-local) inner class may be declared as public, protected, private, static, final, or

    abstract.

    19. What is an Iterator interface?

    The Iterator interface is used to step through the elements of a Collection.

    20. What is the difference between the >> and >>> operators?

    The >> operator carries the sign bit when shifting right. The >>> zero-fills bits that have

    been shifted out.

    21. Which method of the Component class is used to set the position and size of a

    component?

    setBounds()

    22. How many bits are used to represent Unicode, ASCII, UTF-16, and UTF-8

    characters?

    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.

    23 What is the difference between yielding and sleeping?

    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.24. Which java.util classes and interfaces support event handling?

    The EventObject class and the EventListener interface support event processing.

    25. Is sizeof a keyword?

    The sizeof operator is not a keyword.

    26. What are wrapper classes?

    Wrapper classes are classes that allow primitive types to be accessed as objects.

    27. Does garbage collection guarantee that a program will not run out of memory?

    Garbage collection does not guarantee that a program will not run out of memory. It is

    possible for programs to use up memory resources faster than they are garbage collected. It

    is also possible for programs to create objects that are not subject to garbage collection.

    28. What restrictions are placed on the location of a package statement within a source

    code file?

    A package statement must appear as the first line in a source code file (excluding blank lines

    and comments).

    29. Can an object's finalize() method be invoked while it is reachable?

    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.

    30. What is the immediate superclass of the Applet class?

    Panel

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    3/62

    31. What is the difference between preemptive scheduling and time slicing?

    Under preemptive scheduling, the highest priority task executes until it enters the waiting or

    dead states or a higher priority task comes into existence. Under time slicing, a task executes

    for a predefined slice of time and then reenters the pool of ready tasks. The scheduler then

    determines which task should execute next, based on priority and other factors.

    32. Name three Component subclasses that support painting.

    The Canvas, Frame, Panel, and Applet classes support painting.

    33. What value does readLine() return when it has reached the end of a file?

    The readLine() method returns null when it has reached the end of a file.

    34. What is the immediate superclass of the Dialog class?

    Window.

    35. What is clipping?

    Clipping is the process of confining paint operations to a limited area or shape.

    36. What is a native method?

    A native method is a method that is implemented in a language other than Java.

    37. Can a for statement loop indefinitely?

    Yes, a for statement can loop indefinitely. For example, consider the following: for(;;) ;

    38. What are order of precedence and associativity, and how are they used?

    Order of precedence determines the order in which operators are evaluated in expressions.

    Associatity determines whether an expression is evaluated left-to-right or right-to-left

    39. When a thread blocks on I/O, what state does it enter?

    A thread enters the waiting state when it blocks on I/O.

    40. To what value is a variable of the String type automatically initialized?The default value of a String type is null.

    41. What is the catch or declare rule for method declarations?

    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.

    42. What is the difference between a MenuItem and a CheckboxMenuItem?

    The CheckboxMenuItem class extends the MenuItem class to support a menu item that may

    be checked or unchecked.

    43. What is a task's priority and how is it used in scheduling?

    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.

    44. What class is the top of the AWT event hierarchy?

    The java.awt.AWTEvent class is the highest-level class in the AWT event-class hierarchy.

    45. When a thread is created and started, what is its initial state?

    A thread is in the ready state after it has been created and started.

    46. Can an anonymous class be declared as implementing an interface and extending a

    class?

    An anonymous class may implement an interface or extend a superclass, but may not be

    declared to do both.

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    4/62

    47. What is the range of the short type?

    The range of the short type is -(2^15) to 2^15 - 1.

    48. What is the range of the char type?

    The range of the char type is 0 to 2^16 - 1.

    49. In which package are most of the AWT events that support the event-delegation

    model defined?

    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.

    2. 50. What is the immediate superclass of Menu?

    MenuItem

    51. What is the purpose of finalization?

    The purpose of finalization is to give an unreachable object the opportunity to perform any

    cleanup processing before the object is garbage collected.

    52. Which class is the immediate superclass of the MenuComponent class.

    Object

    53. What invokes a thread's run() method?

    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.

    54. What is the difference between the Boolean & operator and the && operator?

    If an expression involving the Boolean & operator is evaluated, both operands are evaluated.

    Then the & operator is applied to the operand. When an expression involving the &&

    operator is evaluated, the first operand is evaluated. If the first operand returns a value of

    true then the second operand is evaluated. The && operator is then applied to the first andsecond operands. If the first operand evaluates to false, the evaluation of the second operand

    is skipped.

    55. Name three subclasses of the Component class.

    Box.Filler, Button, Canvas, Checkbox, Choice, Container, Label, List, Scrollbar, or

    TextComponent

    56. What is the GregorianCalendar class?

    The GregorianCalendar provides support for traditional Western calendars.

    57. Which Container method is used to cause a container to be laid out and

    redisplayed?

    validate()

    58. What is the purpose of the Runtime class?

    The purpose of the Runtime class is to provide access to the Java runtime system. 59. How

    many times may an object's finalize() method be invoked by the garbage collector?

    An object's finalize() method may only be invoked once by the garbage collector.

    60. What is the purpose of the finally clause of a try-catch-finally statement?

    The finally clause is used to provide the capability to execute code no matter whether or not

    an exception is thrown or caught.

    61. What is the argument type of a program's main() method?

    A program's main() method takes an argument of the String

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    5/62

    type.

    62. Which Java operator is right associative?

    The = operator is right associative.

    63. What is the Locale class?

    The Locale class is used to tailor program output to the conventions of a particular

    geographic, political, or cultural region.

    64. Can a double value be cast to a byte?

    Yes, a double value can be cast to a byte.

    65. What is the difference between a break statement and a continue statement?

    A break statement results in the termination of the statement to which it applies (switch, for,

    do, or while). A continue statement is used to end the current loop iteration and return

    control to the loop statement.

    66. What must a class do to implement an interface?

    It must provide all of the methods in the interface and identify the interface in its

    implements clause.

    67. What method is invoked to cause an object to begin executing as a separate thread?

    The start() method of the Thread class is invoked to cause an object to begin executing as a

    separate thread.

    68. Name two subclasses of the TextComponent class.

    TextField and TextArea

    69. What is the advantage of the event-delegation model over the earlier event-

    inheritance model?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.

    70. Which containers may have a MenuBar?

    Frame71. How are commas used in the initialization and iteration parts of a for statement?

    Commas are used to separate multiple statements within the initialization and iteration parts

    of a for statement.

    72. What is the purpose of the wait(), notify(), and notifyAll() methods?

    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.

    73. What is an abstract method?

    An abstract method is a method whose implementation is deferred to a subclass.

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    6/62

    74. How are Java source code files named?

    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 andinterfaces. Source code files use the .java extension.

    75. What is the relationship between the Canvas class and the Graphics class?

    A Canvas object provides access to a Graphics object via its paint() method.

    76. What are the high-level thread states?

    The high-level thread states are ready, running, waiting, and dead.

    77. What value does read() return when it has reached the end of a file?

    The read() method returns -1 when it has reached the end of a file.

    78. Can a Byte object be cast to a double value?

    No, an object cannot be cast to a primitive value.

    79. What is the difference between a static and a non-static inner class?

    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.

    80. What is the difference between the String and StringBuffer classes?

    String objects are constants. StringBuffer objects are not.

    81. If a variable is declared as private, where may the variable be accessed?

    A private variable may only be accessed within the class in which it is declared.

    82. What is an object's lock and which objects have locks?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.

    83. What is the Dictionary class?

    The Dictionary class provides the capability to store key-value pairs.

    84. How are the elements of a BorderLayout organized?

    The elements of a BorderLayout are organized at the borders (North, South, East, and West)

    and the center of a container.85. What is the % operator?

    It is referred to as the modulo or remainder operator. It returns the remainder of dividing the

    first operand by the second operand.

    86. When can an object reference be cast to an interface reference?

    An object reference be cast to an interface reference when the object implements the

    referenced interface.

    87. What is the difference between a Window and a Frame?

    The Frame class extends Window to define a main application window that can have a menu

    bar.

    88. Which class is extended by all other classes?

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    7/62

    The Object class is extended by all other classes.

    89. Can an object be garbage collected while it is still reachable?

    A reachable object cannot be garbage collected. Only unreachable objects may be garbage

    collected..

    90. Is the ternary operator written x : y ?

    z or x ?

    y : z ?

    It is written x ?

    y : z.

    91. What is the difference between the Font and FontMetrics classes?

    The FontMetrics class is used to define implementation-specific properties, such as ascent

    and descent, of a Font object.

    92. How is rounding performed under integer division?

    The fractional part of the result is truncated. This is known as rounding toward zero.

    93. What happens when a thread cannot acquire a lock on an object?

    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.

    94. What is the difference between the Reader/Writer class hierarchy and the

    InputStream/OutputStream class hierarchy?

    The Reader/Writer class hierarchy is character-oriented, and the InputStream/OutputStream

    class hierarchy is byte-oriented.

    95. What classes of exceptions may be caught by a catch clause?A catch clause can catch any exception that may be assigned to the Throwable type. This

    includes the Error and Exception types.

    96. If a class is declared without any access modifiers, where may the class be

    accessed?

    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.

    97. What is the SimpleTimeZone class?

    The SimpleTimeZone class provides support for a Gregorian calendar.98. What is the Map interface?

    The Map interface replaces the JDK 1.1 Dictionary class and is used associate keys with

    values.

    3. 99. Does a class inherit the constructors of its superclass?

    A class does not inherit constructors from any of its super classes.

    100. For which statements does it make sense to use a label?

    The only statements for which it makes sense to use a label are those statements that can

    enclose a break or continue statement.

    101. What is the purpose of the System class?

    The purpose of the System class is to provide access to system resources.

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    8/62

    102. Which TextComponent method is used to set a TextComponent to the read-only

    state?

    setEditable()

    103. How are the elements of a CardLayout organized?

    The elements of a CardLayout are stacked, one on top of the other, like a deck of cards. 104.

    Is &&= a valid Java operator?

    No, it is not.

    105. Name the eight primitive Java types.

    The eight primitive types are byte, char, short, int, long, float, double, and boolean.

    106. Which class should you use to obtain design information about an object?

    The Class class is used to obtain information about an object's design.

    107. What is the relationship between clipping and repainting?

    When a window is repainted by the AWT painting thread, it sets the clipping regions to the

    area of the window that requires repainting.

    108. Is "abc" a primitive value?

    The String literal "abc" is not a primitive value. It is a String object.

    109. What is the relationship between an event-listener interface and an event-adapter

    class?

    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.

    110. What restrictions are placed on the values of each case of a switch statement?

    During compilation, the values of each case of a switch statement must evaluate to a valuethat can be promoted to an int value.

    111. What modifiers may be used with an interface declaration?

    An interface may be declared as public or abstract.

    112. Is a class a subclass of itself?

    A class is a subclass of itself.

    113. What is the highest-level event class of the event-delegation model?

    The java.util.EventObject class is the highest-level class in the event-delegation class

    hierarchy.

    114. What event results from the clicking of a button?

    The ActionEvent event is generated as the result of the clicking of a button.

    115. How can a GUI component handle its own events?

    A component can handle its own events by implementing the required event-listener

    interface and adding itself as its own event listener.

    116. What is the difference between a while statement and a do statement?

    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.

    117. How are the elements of a GridBagLayout organized?

    The elements of a GridBagLayout are organized according to a grid. However, the elements

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    9/62

    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.

    118. What advantage do Java's layout managers provide over traditional windowing

    systems?

    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.

    119. What is the Collection interface?

    The Collection interface provides support for the implementation of a mathematical bag - an

    unordered collection of objects that may contain duplicates. 120. What modifiers can be

    used with a local inner class?

    A local inner class may be final or abstract.

    121. What is the difference between static and non-static variables?

    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.

    122. What is the difference between the paint() and repaint() methods?

    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.

    123. What is the purpose of the File class?

    The File class is used to create objects that provide access to the files and directories of a

    local file system.

    124. Can an exception be rethrown?Yes, an exception can be rethrown.

    125. Which Math method is used to calculate the absolute value of a number?

    The abs() method is used to calculate absolute values.

    126. How does multithreading take place on a computer with a single CPU?

    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.

    127. When does the compiler supply a default constructor for a class?

    The compiler supplies a default constructor for a class if no other constructors are provided.

    128. When is the finally clause of a try-catch-finally statement executed?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.

    129. Which class is the immediate superclass of the Container class?

    Component

    130. If a method is declared as protected, where may the method be accessed?

    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.

    131. How can the Checkbox class be used to create a radio button?

    By associating Checkbox objects with a CheckboxGroup.

    132. Which non-Unicode letter characters may be used as the first character of an

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    10/62

    identifier?

    The non-Unicode letter characters $ and _ may appear as the first character of an identifier

    133. What restrictions are placed on method overloading?

    Two methods may not have the same name and argument list but different return types.

    134. What happens when you invoke a thread's interrupt method while it is sleeping or

    waiting?

    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.

    135. What is casting?

    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.

    136. What is the return type of a program's main() method?

    A program's main() method has a void return type.

    137. Name four Container classes.

    Window, Frame, Dialog, FileDialog, Panel, Applet, or ScrollPane

    138. What is the difference between a Choice and a List?

    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.139. What class of exceptions are generated by the Java run-time system?

    The Java runtime system generates RuntimeException and Error exceptions.

    140. What class allows you to read objects directly from a stream?

    The ObjectInputStream class supports the reading of objects from input streams.

    141. What is the difference between a field variable and a local variable?

    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.

    142. Under what conditions is an object's finalize() method invoked by the garbage

    collector?

    The garbage collector invokes an object's finalize() method when it detects that the object

    has become unreachable.

    143. How are this () and super () used with constructors?

    this() is used to invoke a constructor of the same class. super() is used to invoke a superclass

    constructor.

    144. What is the relationship between a method's throws clause and the exceptions that

    can be thrown during the method's execution?

    A method's throws clause must declare any checked exceptions that are not caught within

    the body of the method.

    145. What is the difference between the JDK 1.02 event model and the event-delegation

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    11/62

    model introduced with JDK 1.1?

    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 asevent 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.

    146. How is it possible for two String objects with identical values not to be equal

    under the == operator?

    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.

    147. Why are the methods of the Math class static?

    So they can be invoked as if they are a mathematical code library.

    4. 148. What Checkbox method allows you to tell if a Checkbox is checked?

    getState()

    149. What state is a thread in when it is executing?

    An executing thread is in the running state.

    150. What are the legal operands of the instanceof operator?

    The left operand is an object reference or null value and the right operand is a class,

    interface, or array type.151. How are the elements of a GridLayout organized?

    The elements of a GridBad layout are of equal size and are laid out using the squares of a

    grid.

    152. What an I/O filter?

    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.

    153. If an object is garbage collected, can it become reachable again?

    Once an object is garbage collected, it ceases to exist. It can no longer become reachable

    again.154. What is the Set interface?

    The Set interface provides methods for accessing the elements of a finite mathematical set.

    Sets do not allow duplicate elements.

    155. What classes of exceptions may be thrown by a throw statement?

    A throw statement may throw any expression that may be assigned to the Throwable type.

    156. What are E and PI?

    E is the base of the natural logarithm and PI is mathematical value pi.

    157. Are true and false keywords?

    The values true and false are not keywords.

    158. What is a void return type?

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    12/62

    A void return type indicates that a method does not return a value.

    159. What is the purpose of the enableEvents() method?

    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.160. What is the difference between the File and RandomAccessFile classes?

    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.

    161. What happens when you add a double value to a String?

    The result is a String object.

    162. What is your platform's default character encoding?

    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..

    163. Which package is always imported by default?

    The java.lang package is always imported by default.

    164. What interface must an object implement before it can be written to a stream as

    an object?

    An object must implement the Serializable or Externalizable interface before it can be

    written to a stream as an object.

    165. How are this and super used?

    this is used to refer to the current object instance. super is used to refer to the variables andmethods of the superclass of the current object instance.

    166. What is the purpose of garbage collection?

    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.

    167. What is a compilation unit?

    A compilation unit is a Java source code file.

    168. What interface is extended by AWT event listeners?

    All AWT event listeners extend the java.util.EventListener interface. 169. What restrictions

    are placed on method overriding?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.

    170. How can a dead thread be restarted?

    A dead thread cannot be restarted.

    171. What happens if an exception is not caught?

    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.

    172. What is a layout manager?

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    13/62

    A layout manager is an object that is used to organize components in a container.

    173. Which arithmetic operations can result in the throwing of an

    ArithmeticException?

    Integer / and % can result in the throwing of an ArithmeticException.

    174. What are three ways in which a thread can enter the waiting state?

    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.

    175. Can an abstract class be final?

    An abstract class may not be declared as final.

    176. What is the ResourceBundle class?

    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.

    177. 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?

    The exception propagates up to the next higher level try-catch statement (if any) or results in

    the program's termination.

    178. What is numeric promotion?

    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.

    179. What is the difference between a Scrollbar and a ScrollPane?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.

    180. What is the difference between a public and a non-public class?

    A public class may be accessed outside of its package. A non-public class may not be

    accessed outside of its package.

    181. To what value is a variable of the boolean type automatically initialized?

    The default value of the boolean type is false.

    182. Can try statements be nested?

    Try statements may be tested.

    183. What is the difference between the prefix and postfix forms of the ++ operator?

    The prefix form performs the increment operation and returns the value of the increment

    operation. The postfix form returns the current value all of the expression and then performs

    the increment operation on that value.

    184. What is the purpose of a statement block?

    A statement block is used to organize a sequence of statements as a single statement group.

    185. What is a Java package and how is it used?

    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

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    14/62

    classes and interfaces.

    186. What modifiers may be used with a top-level class?

    A top-level class may be public, abstract, or final.

    187. What are the Object and Class classes used for?

    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.

    188. How does a try statement determine which catch clause should be used to handle

    an exception?

    When an exception is thrown within the body of a try statement, the catch clauses of the try

    statement are examined in the order in which they appear. The first catch clause that is

    capable of handling the exception is executed. The remaining catch clauses are ignored.

    189. Can an unreachable object become reachable again?

    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. 190. When is an object subject to garbage collection?

    An object is subject to garbage collection when it becomes unreachable to the program in

    which it is used.

    191. What method must be implemented by all threads?

    All tasks must implement the run() method, whether they are a subclass of Thread or

    implement the Runnable interface.

    192. What methods are used to get and set the text label displayed by a Button object?

    getLabel() and setLabel()

    193. Which Component subclass is used for drawing and painting?Canvas

    194. What are synchronized methods and synchronized statements?

    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

    195. What are the two basic ways in which classes that can be run as threads may be

    defined?A thread class may be declared as a subclass of Thread, or it may implement the Runnable

    interface.

    196. What are the problems faced by Java programmers who don't use layout

    managers?

    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.

    197. What is the difference between an if statement and a switch statement?

    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

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    15/62

    multiple alternatives. It uses an int expression to determine which alternative should be

    executed.

    Database Question and Answer

    1. How do you implement one-to-one, one-to-many and many-to-many relationships

    while designing tables?

    One-to-One relationship can be implemented as a single table and rarely as two tables with

    primary and foreign key relationships. One-to-Many relationships are implemented by

    splitting the data into two tables with primary key and foreign key relationships. Many-to-

    Many relationships are implemented using a junction table with the keys from both the

    tables forming the composite primary key of the junction table.

    2. What's the difference between a primary key and a unique key?

    Both primary key and unique enforce uniqueness of the column on which they are defined.

    But by default primary key creates a clustered index on the column, where are unique

    creates a nonclustered index by default. Another major difference is that, primary key

    doesn't allow NULLs, but unique key allows one NULL only.

    3. What are user defined datatypes and when you should go for them?

    User defined datatypes let you extend the base SQL Server datatypes by providing a

    descriptive name, and format to the database. Take for example, in your database, there is a

    column called Flight_Num which appears in many tables. In all these tables it should be

    varchar(8). In this case you could create a user defined datatype called Flight_num_type of

    varchar(8) and use it across all your tables.

    4. What is bit datatype and what's the information that can be stored inside a bit

    column?

    Bit datatype is used to store boolean information like 1 or 0 (true or false). Untill SQL

    Server 6.5 bit datatype could hold either a 1 or 0 and there was no support for NULL. But

    from SQL Server 7.0 onwards, bit datatype can represent a third state, which is NULL.

    5. Define candidate key, alternate key, composite key.

    A candidate key is one that can identify each row of a table uniquely. Generally a candidate

    key becomes the primary key of the table. If the table has more than one candidate key, one

    of them will become the primary key, and the rest are called alternate keys. A key formedby combining at least two or more columns is called composite key.

    6. What are defaults? Is there a column to which a default can't be bound?

    A default is a value that will be used by a column, if no value is supplied to that column

    while inserting data. IDENTITY columns and timestamp columns can't have defaults bound

    to them.

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    16/62

    J2ee Question and answer

    What is "abstract schema"?

    The part of an entity bean's deployment descriptor that defines the bean's persistent fields

    and relationships.

    2. What is "abstract schema name"?

    A logical name that is referenced in EJB QL queries.

    3. What is "access control"?

    The methods by which interactions with resources are limited to collections of users or

    programs for the purpose of enforcing integrity, confidentiality, or availability constraints.

    4. What is "ACID"?

    The acronym for the four properties guaranteed by transactions: atomicity, consistency,

    isolation, and durability.

    5. What is "activation"?

    The process of transferring an enterprise bean from secondary storage to memory. (See

    passivation.)

    6. What is "anonymous access"?

    Accessing a resource without authentication.

    7. What is "applet"?

    A J2EE component that typically executes in a Web browser but can execute in a variety of

    other applications or devices that support the applet programming model.

    8. What is "applet container"?

    A container that includes support for the applet programming model.9. What is "application assembler"?

    A person who combines J2EE components and modules into deployable application units.

    10. What is "application client"?

    A first-tier J2EE client component that executes in its own Java virtual machine.

    Application clients have access to some J2EE platform APIs.

    11. What is "application client container"?

    A container that supports application client components.

    12. What is "application client module"?

    A software unit that consists of one or more classes and an application client deploymentdescriptor.

    13. What is "application component provider"?

    A vendor that provides the Java classes that implement components' methods, JSP page

    definitions, and any required deployment descriptors.

    14. What is "application configuration resource file"?

    An XML file used to configure resources for a JavaServer Faces application, to define

    navigation rules for the application, and to register converters, validators, listeners,

    renderers, and components with the application.

    15. What is "archiving"?

    The process of saving the state of an object and restoring it.

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    17/62

    16. What is "asant"?

    A Java-based build tool that can be extended using Java classes. The configuration files are

    XML-based, calling out a target tree where various tasks get executed.

    17. What is "attribute"?

    A qualifier on an XML tag that provides additional information.

    18. What is authentication?

    The process that verifies the identity of a user, device, or other entity in a computer system,

    usually as a prerequisite to allowing access to resources in a system. The Java servlet

    specification requires three types of authentication-basic, form-based, and mutual-and

    supports digest authentication.

    19. What is authorization?

    The process by which access to a method or resource is determined. Authorization depends

    on the determination of whether the principal associated with a request through

    authentication is in a given security role. A security role is a logical grouping of users

    defined by the person who assembles the application. A deployer maps security roles to

    security identities. Security identities may be principals or groups in the operational

    environment.

    20. What is authorization constraint?

    An authorization rule that determines who is permitted to access a Web resource collection.

    21. What is B2B?

    B2B stands for Business-to-business.

    22. What is backing bean?

    A JavaBeans component that corresponds to a JSP page that includes JavaServer Facescomponents. The backing bean defines properties for the components on the page and

    methods that perform processing for the component. This processing includes event

    handling, validation, and processing associated with navigation.

    23. What is basic authentication?

    An authentication mechanism in which a Web server authenticates an entity via a user name

    and password obtained using the Web application's built-in authentication mechanism.

    24. What is bean-managed persistence?

    The mechanism whereby data transfer between an entity bean's variables and a resource

    manager is managed by the entity bean.25. What is bean-managed transaction?

    A transaction whose boundaries are defined by an enterprise bean.

    26. What is binary entity?

    See unparsed entity.

    27. What is binding (XML)?

    Generating the code needed to process a well-defined portion of XML data.

    28. What is binding (JavaServer Faces technology)?

    Wiring UI components to back-end data sources such as backing bean properties.

    29. What is build file?

    The XML file that contains one or more asant targets. A target is a set of tasks you want to

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    18/62

    be executed. When starting asant, you can select which targets you want to have executed.

    When no target is given, the project's default target is executed.

    30. What is business logic?

    The code that implements the functionality of an application. In the Enterprise JavaBeans

    architecture, this logic is implemented by the methods of an enterprise bean.

    31. What is business method?

    A method of an enterprise bean that implements the business logic or rules of an application.

    32. What is callback methods?

    Component methods called by the container to notify the component of important events in

    its life cycle.

    33. What is caller?

    Same as caller principal.

    34. What is caller principal?

    The principal that identifies the invoker of the enterprise bean method.

    35. What is cascade delete?

    A deletion that triggers another deletion. A cascade delete can be specified for an entity

    bean that has container-managed persistence.

    36. What is CDATA?

    A predefined XML tag for character data that means "don't interpret these characters," as

    opposed to parsed character data (PCDATA), in which the normal rules of XML syntax

    apply. CDATA sections are typically used to show examples of XML syntax.

    37. What is certificate authority?A trusted organization that issues public key certificates and provides identification to the

    bearer.

    38. What is client-certificate authentication?

    An authentication mechanism that uses HTTP over SSL, in which the server and, optionally,

    the client authenticate each other with a public key certificate that conforms to a standard

    that is defined by X.509 Public Key Infrastructure.

    39. What is comment?

    In an XML document, text that is ignored unless the parser is specifically told to recognize

    it.40. What is commit?

    The point in a transaction when all updates to any resources involved in the transaction are

    made permanent.

    41. What is component?

    See what is J2EE component.

    42. What is component (JavaServer Faces technology)?

    See what is JavaServer Faces UI component.

    1. 43. What is component contract?

    The contract between a J2EE component and its container. The contract includes life-cycle

    management of the component, a context interface that the instance uses to obtain various

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    19/62

    information and services from its container, and a list of services that every container must

    provide for its components.

    44. What is component-managed sign-on?

    A mechanism whereby security information needed for signing on to a resource is provided

    by an application component.

    45. What is connection?

    See what is resource manager connection.

    46. What is connection factory?

    See what is resource manager connection factory.

    47. What is connector?

    A standard extension mechanism for containers that provides connectivity to enterprise

    information systems. A connector is specific to an enterprise information system and

    consists of a resource adapter and application development tools for enterprise information

    system connectivity. The resource adapter is plugged in to a container through its support

    for system-level contracts defined in the Connector architecture.

    48. What is Connector architecture?

    An architecture for integration of J2EE products with enterprise information systems. There

    are two parts to this architecture: a resource adapter provided by an enterprise information

    system vendor and the J2EE product that allows this resource adapter to plug in. This

    architecture defines a set of contracts that a resource adapter must support to plug in to a

    J2EE product-for example, transactions, security, and resource management.

    49. What is container?

    An entity that provides life-cycle management, security, deployment, and runtime services

    to J2EE components. Each type of container (EJB, Web, JSP, servlet, applet, and application

    client) also provides component-specific services.

    50. What is container-managed persistence?

    The mechanism whereby data transfer between an entity bean's variables and a resource

    manager is managed by the entity bean's container.

    51. What is container-managed sign-on?

    The mechanism whereby security information needed for signing on to a resource is

    supplied by the container.

    52. What is container-managed transaction?A transaction whose boundaries are defined by an EJB container. An entity bean must use

    container-managed transactions.

    53. What is content?

    In an XML document, the part that occurs after the prolog, including the root element and

    everything it contains.

    54. What is context attribute?

    An object bound into the context associated with a servlet.

    55. What is context root?

    A name that gets mapped to the document root of a Web application.

    56. What is conversational state?

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    20/62

    The field values of a session bean plus the transitive closure of the objects reachable from

    the bean's fields. The transitive closure of a bean is defined in terms of the serialization

    protocol for the Java programming language, that is, the fields that would be stored by

    serializing the bean instance.

    57. What is CORBA?

    Common Object Request Broker Architecture. A language-independent distributed objectmodel specified by the OMG.

    58. What is create method?

    A method defined in the home interface and invoked by a client to create an enterprise bean.

    59. What is credentials?

    The information describing the security attributes of a principal.

    60. What is CSS?

    Cascading style sheet. A stylesheet used with HTML and XML documents to add a style to

    all elements marked with a particular tag, for the direction of browsers or other presentation

    mechanisms.

    61. What is CTS?

    Compatibility test suite. A suite of compatibility tests for verifying that a J2EE product

    complies with the J2EE platform specification.

    62. What is data?

    The contents of an element in an XML stream, generally used when the element does not

    contain any subelements. When it does, the term content is generally used. When the only

    text in an XML structure is contained in simple elements and when elements that have

    subelements have little or no data mixed in, then that structure is often thought of as XML

    data, as opposed to an XML document.

    63. What is DDP?

    Document-driven programming. The use of XML to define applications.

    64. What is declaration?

    The very first thing in an XML document, which declares it as XML. The minimal

    declaration is xml version="1.0"?

    >. The declaration is part of the document prolog.

    65. What is declarative security?Mechanisms used in an application that are expressed in a declarative syntax in a

    deployment descriptor.

    66. What is delegation?

    An act whereby one principal authorizes another principal to use its identity or privileges

    with some restrictions.

    67. What is deployer?

    A person who installs J2EE modules and applications into an operational environment.

    68. What is deployment?

    The process whereby software is installed into an operational environment.

    69. What is deployment descriptor?

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    21/62

    An XML file provided with each module and J2EE application that describes how they

    should be deployed. The deployment descriptor directs a deployment tool to deploy a

    module or application with specific container options and describes specific configuration

    requirements that a deployer must resolve.

    70. What is destination?

    A JMS administered object that encapsulates the identity of a JMS queue or topic. Seepoint-to-point messaging system, publish/subscribe messaging system.

    71. What is digest authentication?

    An authentication mechanism in which a Web application authenticates itself to a Web

    server by sending the server a message digest along with its HTTP request message. The

    digest is computed by employing a one-way hash algorithm to a concatenation of the HTTP

    request message and the client's password. The digest is typically much smaller than the

    HTTP request and doesn't contain the password.

    72. What is distributed application?

    An application made up of distinct components running in separate runtime environments,

    usually on different platforms connected via a network. Typical distributed applications are

    two-tier (client-server), three-tier (client-middleware-server), and multitier (client-multiple

    middleware-multiple servers).

    73. What is document?

    In general, an XML structure in which one or more elements contains text intermixed with

    subelements. See also data.

    74. What is Document Object Model?

    An API for accessing and manipulating XML documents as tree structures. DOM provides

    platform-neutral, language-neutral interfaces that enables programs and scripts to

    dynamically access and modify content and structure in XML documents.

    75. What is document root?

    The top-level directory of a WAR. The document root is where JSP pages, client-side

    classes and archives, and static Web resources are stored.

    76. What is DTD?

    Document type definition. An optional part of the XML document prolog, as specified by

    the XML standard. The DTD specifies constraints on the valid tags and tag sequences that

    can be in the document. The DTD has a number of shortcomings, however, and this has ledto various schema proposals. For example, the DTD entry says that the XML element called

    username contains parsed character data-that is, text alone, with no other structural elements

    under it. The DTD includes both the local subset, defined in the current file, and the external

    subset, which consists of the definitions contained in external DTD files that are referenced

    in the local subset using a parameter entity.

    77. What is durable subscription?

    In a JMS publish/subscribe messaging system, a subscription that continues to exist whether

    or not there is a current active subscriber object. If there is no active subscriber, the JMS

    provider retains the subscription's messages until they are received by the subscription oruntil they expire.

    78. What is EAR file?

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    22/62

    Enterprise Archive file. A JAR archive that contains a J2EE application.

    79. What is ebXML?

    Electronic Business XML. A group of specifications designed to enable enterprises to

    conduct business through the exchange of XML-based messages. It is sponsored by OASIS

    and the United Nations Centre for the Facilitation of Procedures and Practices in

    Administration, Commerce and Transport (U.N./CEFACT).80. What is EJB?

    Enterprise JavaBeans.

    81. What is EJB container?

    A container that implements the EJB component contract of the J2EE architecture. This

    contract specifies a runtime environment for enterprise beans that includes security,

    concurrency, life-cycle management, transactions, deployment, naming, and other services.

    An EJB container is provided by an EJB or J2EE server.

    82. What is EJB container provider?

    A vendor that supplies an EJB container.

    83. What is EJB context?

    An object that allows an enterprise bean to invoke services provided by the container and to

    obtain the information about the caller of a client-invoked method.

    84. What is EJB home object?

    An object that provides the life-cycle operations (create, remove, find) for an enterprise

    bean. The class for the EJB home object is generated by the container's deployment tools.

    The EJB home object implements the enterprise bean's home interface. The client references

    an EJB home object to perform life-cycle operations on an EJB object. The client uses JNDI

    to locate an EJB home object.

    2. 85. What is EJB JAR file?

    A JAR archive that contains an EJB module.

    86. What is EJB module?

    A deployable unit that consists of one or more enterprise beans and an EJB deployment

    descriptor.

    87. What is EJB object?

    An object whose class implements the enterprise bean's remote interface. A client never

    references an enterprise bean instance directly; a client always references an EJB object.The class of an EJB object is generated by a container's deployment tools.

    88. What is EJB server?

    Software that provides services to an EJB container. For example, an EJB container

    typically relies on a transaction manager that is part of the EJB server to perform the two-

    phase commit across all the participating resource managers. The J2EE architecture assumes

    that an EJB container is hosted by an EJB server from the same vendor, so it does not

    specify the contract between these two entities. An EJB server can host one or more EJB

    containers.

    89. What is EJB server provider?A vendor that supplies an EJB server.

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    23/62

    90. What is element?

    A unit of XML data, delimited by tags. An XML element can enclose other elements.

    91. What is empty tag?

    A tag that does not enclose any content.

    92. What is enterprise bean?

    A J2EE component that implements a business task or business entity and is hosted by an

    EJB container; either an entity bean, a session bean, or a message-driven bean.

    93. What is enterprise bean provider?

    An application developer who produces enterprise bean classes, remote and home

    interfaces, and deployment descriptor files, and packages them in an EJB JAR file.

    94. What is enterprise information system?

    The applications that constitute an enterprise's existing system for handling companywide

    information. These applications provide an information infrastructure for an enterprise. An

    enterprise information system offers a well-defined set of services to its clients. These

    services are exposed to clients as local or remote interfaces or both. Examples of enterprise

    information systems include enterprise resource planning systems, mainframe transaction

    processing systems, and legacy database systems.

    95. What is enterprise information system resource?

    An entity that provides enterprise information system-specific functionality to its clients.

    Examples are a record or set of records in a database system, a business object in an

    enterprise resource planning system, and a transaction program in a transaction processing

    system.

    96. What is Enterprise JavaBeans (EJB)?A component architecture for the development and deployment of object-oriented,

    distributed, enterprise-level applications. Applications written using the Enterprise

    JavaBeans architecture are scalable, transactional, and secure.

    97. What is Enterprise JavaBeans Query Language (EJB QL)?

    Defines the queries for the finder and select methods of an entity bean having container-

    managed persistence. A subset of SQL92, EJB QL has extensions that allow navigation over

    the relationships defined in an entity bean's abstract schema.

    98. What is an entity?

    A distinct, individual item that can be included in an XML document by referencing it. Suchan entity reference can name an entity as small as a character (for example,

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    24/62

    DTD. In the XML data, the reference could be to an entity that is defined in the local subset

    of the DTD or to an external XML file (an external entity). The DTD can also carve out a

    segment of DTD specifications and give it a name so that it can be reused (included) at

    multiple points in the DTD by defining a parameter entity.

    101. What is error?

    A SAX parsing error is generally a validation error; in other words, it occurs when an XMLdocument is not valid, although it can also occur if the declaration specifies an XML version

    that the parser cannot handle. See also fatal error, warning.

    102. What is Extensible Markup Language?

    XML.

    103. What is external entity?

    An entity that exists as an external XML file, which is included in the XML document using

    an entity reference.

    104. What is external subset?

    That part of a DTD that is defined by references to external DTD files.

    105. What is fatal error?

    A fatal error occurs in the SAX parser when a document is not well formed or otherwise

    cannot be processed. See also error, warning.

    106. What is filter?

    An object that can transform the header or content (or both) of a request or response. Filters

    differ from Web components in that they usually do not themselves create responses but

    rather modify or adapt the requests for a resource, and modify or adapt responses from a

    resource. A filter should not have any dependencies on a Web resource for which it is acting

    as a filter so that it can be composable with more than one type of Web resource.

    107. What is filter chain?

    A concatenation of XSLT transformations in which the output of one transformation

    becomes the input of the next.

    108. What is finder method?

    A method defined in the home interface and invoked by a client to locate an entity bean.

    109. What is form-based authentication?

    An authentication mechanism in which a Web container provides an application-specific

    form for logging in. This form of authentication uses Base64 encoding and can expose usernames and passwords unless all connections are over SSL.

    110. What is general entity?

    An entity that is referenced as part of an XML document's content, as distinct from a

    parameter entity, which is referenced in the DTD. A general entity can be a parsed entity or

    an unparsed entity.

    111. What is group?

    An authenticated set of users classified by common traits such as job title or customer

    profile. Groups are also associated with a set of roles, and every user that is a member of a

    group inherits all the roles assigned to that group.112. What is handle?

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    25/62

    An object that identifies an enterprise bean. A client can serialize the handle and then later

    deserialize it to obtain a reference to the enterprise bean.

    113. What is home handle?

    An object that can be used to obtain a reference to the home interface. A home handle can

    be serialized and written to stable storage and deserialized to obtain the reference.

    114. What is home interface?

    One of two interfaces for an enterprise bean. The home interface defines zero or more

    methods for managing an enterprise bean. The home interface of a session bean defines

    create and remove methods, whereas the home interface of an entity bean defines create,

    finder, and remove methods.

    115. What is HTML?

    Hypertext Markup Language. A markup language for hypertext documents on the Internet.

    HTML enables the embedding of images, sounds, video streams, form fields, references to

    other objects with URLs, and basic text formatting.

    116. What is HTTP?

    Hypertext Transfer Protocol. The Internet protocol used to retrieve hypertext objects from

    remote hosts. HTTP messages consist of requests from client to server and responses from

    server to client.

    117. What is HTTPS?

    HTTP layered over the SSL protocol.

    118. What is IDL?

    Interface Definition Language. A language used to define interfaces to remote CORBA

    objects. The interfaces are independent of operating systems and programming languages.

    119. What is IIOP?

    Internet Inter-ORB Protocol. A protocol used for communication between CORBA object

    request brokers.

    120. What is impersonation?

    An act whereby one entity assumes the identity and privileges of another entity without

    restrictions and without any indication visible to the recipients of the impersonator's calls

    that delegation has taken place. Impersonation is a case of simple delegation.

    121. What is initialization parameter?

    A parameter that initializes the context associated with a servlet.122. What is ISO 3166?

    The international standard for country codes maintained by the International Organization

    for Standardization (ISO).

    123. What is ISV?

    Independent software vendor.

    124. What is J2EE?

    Java 2 Platform, Enterprise Edition.

    125. What is J2EE application?

    Any deployable unit of J2EE functionality. This can be a single J2EE module or a group of

    modules packaged into an EAR file along with a J2EE application deployment descriptor.

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    26/62

    J2EE applications are typically engineered to be distributed across multiple computing tiers.

    126. What is J2EE component?

    A self-contained functional software unit supported by a container and configurable at

    deployment time. The J2EE specification defines the following J2EE components:

    Application clients and applets are components that run on the client. Java servlet andJavaServer Pages (JSP) technology components are Web components that run on the server.

    Enterprise JavaBeans (EJB) components (enterprise beans) are business components that

    run on the server. J2EE components are written in the Java programming language and are

    compiled in the same way as any program in the language. The difference between J2EE

    components and "standard" Java classes is that J2EE components are assembled into a J2EE

    application, verified to be well formed and in compliance with the J2EE specification, and

    deployed to production, where they are run and managed by the J2EE server or client

    container.

    3. 127. What is J2EE module?

    A software unit that consists of one or more J2EE components of the same container type

    and one deployment descriptor of that type. There are four types of modules: EJB, Web,

    application client, and resource adapter. Modules can be deployed as stand-alone units or

    can be assembled into a J2EE application.

    128. What is J2EE product?

    An implementation that conforms to the J2EE platform specification.

    129. What is J2EE product provider?

    A vendor that supplies a J2EE product.

    130. What is J2EE server?

    The runtime portion of a J2EE product. A J2EE server provides EJB or Web containers or

    both.

    131. What is J2ME?

    Abbreviate of Java 2 Platform, Micro Edition.

    132. What is J2SE?

    Abbreviate of Java 2 Platform, Standard Edition.

    133. What is JAR?

    Java archive. A platform-independent file format that permits many files to be aggregatedinto one file.

    134. What is Java 2 Platform, Enterprise Edition (J2EE)?

    An environment for developing and deploying enterprise applications. The J2EE platform

    consists of a set of services, application programming interfaces (APIs), and protocols that

    provide the functionality for developing multitiered, Web-based applications.

    135. What is Java 2 Platform, Micro Edition (J2ME)?

    A highly optimized Java runtime environment targeting a wide range of consumer products,

    including pagers, cellular phones, screen phones, digital set-top boxes, and car navigation

    systems.136. What is Java 2 Platform, Standard Edition (J2SE)?

    The core Java technology platform.

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    27/62

    137. What is Java API for XML Processing (JAXP)?

    An API for processing XML documents. JAXP leverages the parser standards SAX and

    DOM so that you can choose to parse your data as a stream of events or to build a tree-

    structured representation of it. JAXP supports the XSLT standard, giving you control over

    the presentation of the data and enabling you to convert the data to other XML documents or

    to other formats, such as HTML. JAXP provides namespace support, allowing you to workwith schema that might otherwise have naming conflicts.

    138. What is Java API for XML Registries (JAXR)?

    An API for accessing various kinds of XML registries.

    139. What is Java API for XML-based RPC (JAX-RPC)?

    An API for building Web services and clients that use remote procedure calls and XML.

    140. What is Java IDL?

    A technology that provides CORBA interoperability and connectivity capabilities for the

    J2EE platform. These capabilities enable J2EE applications to invoke operations on remote

    network services using the Object Management Group IDL and IIOP.

    141. What is Java Message Service (JMS)?

    An API for invoking operations on enterprise messaging systems.

    142. What is Java Naming and Directory Interface (JNDI)?

    An API that provides naming and directory functionality.

    143. What is Java Secure Socket Extension (JSSE)?

    A set of packages that enable secure Internet communications.

    144. What is Java Transaction API (JTA)?

    An API that allows applications and J2EE servers to access transactions.145. What is Java Transaction Service (JTS)?

    Specifies the implementation of a transaction manager that supports JTA and implements

    the Java mapping of the Object Management Group Object Transaction Service 1.1

    specification at the level below the API.

    146. What is JavaBeans component?

    A Java class that can be manipulated by tools and composed into applications. A JavaBeans

    component must adhere to certain property and event interface conventions.

    . What is JavaMail?

    An API for sending and receiving email.147. What is JavaServer Faces Technology?

    A framework for building server-side user interfaces for Web applications written in the

    Java programming language.

    148. What is JavaServer Faces conversion model?

    A mechanism for converting between string-based markup generated by JavaServer Faces

    UI components and server-side Java objects.

    149. What is JavaServer Faces event and listener model?

    A mechanism for determining how events emitted by JavaServer Faces UI components are

    handled. This model is based on the JavaBeans component event and listener model.

    150. What is JavaServer Faces expression language?

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    28/62

    A simple expression language used by a JavaServer Faces UI component tag attributes to

    bind the associated component to a bean property or to bind the associated component's

    value to a method or an external data source, such as a bean property. Unlike JSP EL

    expressions, JavaServer Faces EL expressions are evaluated by the JavaServer Faces

    implementation rather than by the Web container.

    151. What is JavaServer Faces navigation model?

    A mechanism for defining the sequence in which pages in a JavaServer Faces application

    are displayed.

    152. What is JavaServer Faces UI component?

    A user interface control that outputs data to a client or allows a user to input data to a

    JavaServer Faces application.

    153. What is JavaServer Faces UI component class?

    A JavaServer Faces class that defines the behavior and properties of a JavaServer Faces UI

    component.

    154. What is JavaServer Faces validation model?

    A mechanism for validating the data a user inputs to a JavaServer Faces UI component.

    155. What is JavaServer Pages (JSP)?

    An extensible Web technology that uses static data, JSP elements, and server-side Java

    objects to generate dynamic content for a client. Typically the static data is HTML or XML

    elements, and in many cases the client is a Web browser.

    156. What is JavaServer Pages Standard Tag Library (JSTL)?

    A tag library that encapsulates core functionality common to many JSP applications. JSTL

    has support for common, structural tasks such as iteration and conditionals, tags for

    manipulating XML documents, internationalization and locale-specific formatting tags, SQL

    tags, and functions.

    157. What is JAXR client?

    A client program that uses the JAXR API to access a business registry via a JAXR provider.

    158. What is JAXR provider?

    An implementation of the JAXR API that provides access to a specific registry provider or

    to a class of registry providers that are based on a common specification.

    159. What is JDBC?An API for database-independent connectivity between the J2EE platform and a wide range

    of data sources.

    160. What is JMS?

    Java Message Service.

    161. What is JMS administered object?

    A preconfigured JMS object (a resource manager connection factory or a destination)

    created by an administrator for the use of JMS clients and placed in a JNDI namespace.

    162. What is JMS application?

    One or more JMS clients that exchange messages.

    163. What is JMS client?

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    29/62

    A Java language program that sends or receives messages.

    164. What is JMS provider?

    A messaging system that implements the Java Message Service as well as other

    administrative and control functionality needed in a full-featured messaging product.

    165. What is JMS session?

    A single-threaded context for sending and receiving JMS messages. A JMS session can be

    nontransacted, locally transacted, or participating in a distributed transaction.

    166. What is JNDI?

    Abbreviate of Java Naming and Directory Interface.

    167. What is JSP?

    Abbreviate of JavaServer Pages.

    168. What is JSP action?

    A JSP element that can act on implicit objects and other server-side objects or can define

    new scripting variables. Actions follow the XML syntax for elements, with a start tag, a

    body, and an end tag; if the body is empty it can also use the empty tag syntax. The tag must

    use a prefix. There are standard and custom actions.

    4. 169. What is JSP container?

    A container that provides the same services as a servlet container and an engine that

    interprets and processes JSP pages into a servlet.

    170. What is JSP container, distributed?

    A JSP container that can run a Web application that is tagged as distributable and is spread

    across multiple Java virtual machines that might be running on different hosts.

    . What is JSP custom action?A user-defined action described in a portable manner by a tag library descriptor and

    imported into a JSP page by a taglib directive. Custom actions are used to encapsulate

    recurring tasks in writing JSP pages.

    171. What is JSP custom tag?

    A tag that references a JSP custom action.

    172. What is JSP declaration?

    A JSP scripting element that declares methods, variables, or both in a JSP page.

    173. What is JSP directive?

    A JSP element that gives an instruction to the JSP container and is interpreted at translationtime.

    174. What is JSP document?

    A JSP page written in XML syntax and subject to the constraints of XML documents.

    175. What is JSP element?

    A portion of a JSP page that is recognized by a JSP translator. An element can be a

    directive, an action, or a scripting element.

    176. What is JSP expression?

    A scripting element that contains a valid scripting language expression that is evaluated,

    converted to a String, and placed into the implicit out object.

    177. What is JSP expression language?

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    30/62

    A language used to write expressions that access the properties of JavaBeans components.

    EL expressions can be used in static text and in any standard or custom tag attribute that can

    accept an expression.

    178. What is JSP page?

    A text-based document containing static text and JSP elements that describes how to process

    a request to create a response. A JSP page is translated into and handles requests as aservlet.

    179. What is JSP scripting element?

    A JSP declaration, scriptlet, or expression whose syntax is defined by the JSP specification

    and whose content is written according to the scripting language used in the JSP page. The

    JSP specification describes the syntax and semantics for the case where the language page

    attribute is "java".

    180. What is JSP scriptlet?

    A JSP scripting element containing any code fragment that is valid in the scripting language

    used in the JSP page. The JSP specification describes what is a valid scriptlet for the case

    where the language page attribute is "java".

    181. What is JSP standard action?

    An action that is defined in the JSP specification and is always available to a JSP page.

    182. What is JSP tag file?

    A source file containing a reusable fragment of JSP code that is translated into a tag handler

    when a JSP page is translated into a servlet.

    183. What is JSP tag handler?

    A Java programming language object that implements the behavior of a custom tag.

    184. What is JSP tag library?

    A collection of custom tags described via a tag library descriptor and Java classes.

    185. What is JSTL?

    Abbreviate of JavaServer Pages Standard Tag Library.

    186. What is JTA?

    Abbreviate of Java Transaction API.

    187. What is JTS?

    Abbreviate of Java Transaction Service.

    189. What is keystore?A file containing the keys and certificates used for authentication.

    190. What is life cycle (J2EE component)?

    The framework events of a J2EE component's existence. Each type of component has

    defining events that mark its transition into states in which it has varying availability for use.

    For example, a servlet is created and has its init method called by its container before

    invocation of its service method by clients or other servlets that require its functionality.

    After the call of its init method, it has the data and readiness for its intended use. The

    servlet's destroy method is called by its container before the ending of its existence so that

    processing associated with winding up can be done and resources can be released. The init

    and destroy methods in this example are callback methods. Similar considerations apply to

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    31/62

    the life cycle of all J2EE component types: enterprise beans, Web components (servlets or

    JSP pages), applets, and application clients.

    191. What is life cycle (JavaServer Faces)?

    A set of phases during which a request for a page is received, a UI component tree

    representing the page is processed, and a response is produced. During the phases of the life

    cycle: The local data of the components is updated with the values contained in the requestparameters. Events generated by the components are processed. Validators and converters

    registered on the components are processed. The components' local data is updated to back-

    end objects. The response is rendered to the client while the component state of the response

    is saved on the server for future requests.

    192. What is local subset?

    That part of the DTD that is defined within the current XML file.

    193. What is managed bean creation facility?

    A mechanism for defining the characteristics of JavaBeans components used in a JavaServer

    Faces application.

    194. What is message?

    In the Java Message Service, an asynchronous request, report, or event that is created, sent,

    and consumed by an enterprise application and not by a human. It contains vital information

    needed to coordinate enterprise applications, in the form of precisely formatted data that

    describes specific business actions.

    195. What is message consumer?

    An object created by a JMS session that is used for receiving messages sent to a destination.

    196. What is message-driven bean?

    An enterprise bean that is an asynchronous message consumer. A message-driven bean has

    no state for a specific client, but its instance variables can contain state across the handling

    of client messages, including an open database connection and an object reference to an EJB

    object. A client accesses a message-driven bean by sending messages to the destination for

    which the bean is a message listener.

    197. What is message producer?

    An object created by a JMS session that is used for sending messages to a destination.

    198. What is mixed-content model?

    A DTD specification that defines an element as containing a mixture of text and one moreother elements. The specification must start with #PCDATA, followed by diverse elements,

    and must end with the "zero-or-more" asterisk symbol (*).

    199. What is method-binding expression?

    A JavaServer Faces EL expression that refers to a method of a backing bean. This method

    performs either event handling, validation, or navigation processing for the UI component

    whose tag uses the method-binding expression.

    200. What is method permission?

    An authorization rule that determines who is permitted to execute one or more enterprise

    bean methods.201. What is mutual authentication?

    An authentication mechanism employed by two parties for the purpose of proving each

  • 7/29/2019 Core Java + J2EE + j2se Interview Question and Answer

    32/62

    other's identity to one another.

    202. What is namespace?

    A standard that lets you specify a unique label for the set of element names defined by a

    DTD. A document using that DTD can be included in any other document without having a

    conflict between element names. The elements defined in your DTD are then uniquely

    identified so that, for example, the parser can tell when an element211. What is ORB?

    Object request broker. A library that enables CORBA objects to locate and communicate

    with one another.

    212. What is OS principal?

    A principal native to the operating system on which the J2EE platform is executing.

    213. What is OTS?

    Object Transaction Service. A definition of the interfaces that permit CORBA objects to

    participate in transactions.

    214. What is parameter entity?

    An entity that consists of DTD specifications, as distinct from a general entity. A parameter

    entity defined in the DTD can then be referenced at other points, thereby eliminating the

    need to recode the definition at each location it is used.

    215. What is parsed entity?