J2EE Interview Questions And Answers _ 5

Started by ganeshbala, Mar 31, 2008, 12:20 PM

Previous topic - Next topic

ganeshbala

J2EE Interview Questions And Answers

What is J2ME ?

Abbreviate of Java 2 Platform, Micro Edition.

What is J2SE ?
Abbreviate of Java 2 Platform, Standard Edition.

What is JAR ?

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

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.

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.

What is Java 2 Platform, Standard Edition (J2SE) ?
The core Java technology platform.

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 work with schema that might otherwise have naming conflicts.

What is Java API for XML Registries (JAXR) ?

An API for accessing various kinds of XML registries.

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. 

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.

What is Java Message Service (JMS) ?
An API for invoking operations on enterprise messaging systems.

What is Java Naming and Directory Interface (JNDI) ?

An API that provides naming and directory functionality.

What is Java Secure Socket Extension (JSSE) ?
A set of packages that enable secure Internet communications.

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

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.

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.

What is JavaServer Faces Technology ?
A framework for building server-side user interfaces for Web applications written in the Java programming language.

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.

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.

What is JavaServer Faces expression language ?
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.

What is JavaServer Faces navigation model ?
A mechanism for defining the sequence in which pages in a JavaServer Faces application are displayed.

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.

What is JavaServer Faces UI component class ?
A JavaServer Faces class that defines the behavior and properties of a JavaServer Faces UI component.

What is JavaServer Faces validation model ?
A mechanism for validating the data a user inputs to a JavaServer Faces UI component.

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.

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.

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

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.

What is JDBC ?
An JDBC for database-independent connectivity between the J2EE platform and a wide range of data sources.

What is JMS ?
Java Message Service.

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.

What is JMS application ?

One or more JMS clients that exchange messages.

What is JMS client ?
A Java language program that sends or receives messages.

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.