J2EE Interviews Question page12,J2EE Interviews Guide,J2EE Interviews

This page discusses - J2EE Interviews Question page12,J2EE Interviews Guide,J2EE Interviews

J2EE Interviews Question page12,J2EE Interviews Guide,J2EE Interviews

J2EE Interviews Question page12

     

  1. What is JMS client ?
    A Java language program that sends or receives messages.
      
  2. 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.
     
  3. 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.
      
  4. What is JNDI ?
    Abbreviate of Java Naming and Directory Interface.
        
  5. What is JSP ?
    Abbreviate of JavaServer Pages.
       
  6. 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.
     
  7. 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.
       
  8. 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.
       
  9. 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.
       
  10. What is JSP custom tag ?
    A tag that references a JSP custom action.
        
  11. What is JSP declaration ?
    A JSP scripting element that declares methods, variables, or both in a JSP page.
       
  12. What is JSP directive ?
    A JSP element that gives an instruction to the JSP container and is interpreted at translation time.
       
  13. What is JSP document ?
    A JSP page written in XML syntax and subject to the constraints of XML documents.
      
  14. 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.
      
  15. 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.
      
  16. What is JSP expression language ?
    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.
       
  17. 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 a servlet.
       
  18. 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".
       
  19. 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".
       
  20. What is JSP standard action ?
    An action that is defined in the JSP specification and is always available to a JSP page.
      
  21. 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.
  22. What is JSP tag handler ?
    A Java programming language object that implements the behavior of a custom tag.
      
  23. What is JSP tag library ?
    A collection of custom tags described via a tag library descriptor and Java classes.
       
  24. What is JSTL ?
    Abbreviate of JavaServer Pages Standard Tag Library.
      
  25. What is JTA ?
    Abbreviate of Java Transaction API.
      
  26. What is JTS ?
    Abbreviate of Java Transaction Service.