• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Some Tests

 
Ranch Hand
Posts: 83
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
May I have your idea about answer to these questions?


1). Asynchronous Web Services are supported by applications written to which two specifications?
(Select 2)
A. JAXM
B. JAX-RPC
C. JAXP
D. JAXR
E. JAXB

2). Which tag fragment indicates a document is described by a Schema rather than a DTD?
A. xmlns
B. doctype
C. pcdata
D. element

3). Which two of the following are essential features of a Web Service?
(Select 2)
A. ASCII encoding
B. XML message exchange
C. URI application identification
D. HTTP network protocol

4). What mechanism does a SOAP server use to report an error?
A. A single <fault> element in the message body
B. A single <fault> element in the message header
C. Multiple <fault> elements in the message body
D. Multiple <fault> elements in the message header

5). Which Web Service specification functions most like IIOP or JRMP?
A. UDDI
B. SOAP
C. WSDL
D. CORBA
E. RMI

6). All of the following are a part of XSL EXCEPT:
A. XPATH
B. XSLT
C. XSLV
D. XSL-FO

7). All of the following can be passed in a JAX-RPC remote method invocation EXCEPT:
A. Remote References
B. String Arrays
C. JavaBeans
D. BigDecimal objects

8). If a SOAP processing error occurs and a fault element is included in a SOAP message, which two of the following elements are REQUIRED under the fault element?
A. <faultcode>
B. <faultactor>
C. <faultstring>
D. <detail>
E. <faultstate>

9) JAX-RPC requires support for which type of HTTP security authentication?
A. Basic
B. Form
C. Client-Cert
D. Custom

10) Which section of a WSDL document contains the URI for the Web service endpoint?
A. portType
B. message
C. binding
D. service


WEB


1) Aservlet called via a getRequestDispatcher().forward method will have which of the following request attributes automatically set for it?
A. request uri
B. conrext path
C. remote host
D. servlet path

2) Which of the following two classes/interfaces must the HttpSession interfaces be able to store?
A. EJBHandle
B. JavaBean implementing Serializable
C. PrintWriter
D. UserTransaction
E. ServletContext

3) In an travel booking Web application, a servlet calls a method on an EJB to alter the date on an airline ticket. What shoul the servlet do if the result of the method call is an application-level exception?
A. Because transactions are automatically rolled back when EJB method throws an exception, the servlet need only inform the client that the change cannot be performed.
B. Because application-level exception in EJB do not automatically cause transaction rollback, the servlet should call code to ensure the original booking is not cancelled before returning a message to the client.
C. After calling the EJB, the servlet has no further responsibilities. Transaction rollback and routing the exception to a JSP error page is specified in the Web deployment descriptor.
D. The servlet avoid the problem by calling code to verify that a seat is available for the new date before initiating the change booking operation.

4) Which two of the following must have references in the Web DD?
A. EJB Containers
B. J2EE Application Clients
C. Message Destinations
D. EJBs

5) An employee bean is the only attribute in the session scope and appears in no other scope and exposes a name properly through getName() and setName() methods. Which two of the following provides non-scripting alternatives to the JSP expression <%= ((Employee)session.getAttribute(�employee�).getName()%>?
A. ${name}
B. ${employee.name}
C. ${employee.getName()}
D. ${sessionScope.employee.name}
E. ${sessionScope.employee.getname()}

6)Which of the following HTML meta tags ensure the response page is not cached on a browser regardless of wether the protocol is HTTP 1.0 or HTTP 1.1:
A. <METAHTTP-EQUIV=�CACHE-CONTROL� CONTENT=�NO-CACHE�><METAHTTP-EQUIV=�EXPIRES� CONTENT=�0�>
B. <METAHTTP-EQUIV=�PRAGMA� CONTENT=�NO-CACHE�><METAHTTP-EQUIV=�CACHE-CONTROL� CONTENT=�NO-CACHE�>
C. <METAHTTP-EQUIV=�PRAGMA� CONTENT=�NO-CACHE�><METAHTTP-EQUIV=�EXPIRES� CONTENT=�NO-CACHE�>
D. <METAHTTP-EQUIV=�PRAGMA� CONTENT=�NO-CACHE�><METAHTTP-EQUIV=�EXPIRES� CONTENT=�0�>

7). Which of the following methods would return the name of an object stored in the servlet context that has been removed or replaced?
A. ServletContextAttributeEvent.getName();
B. ServletContextAttributeEvent.getValue();
C. ServletContextEvent.getName();
D. ServletContextEvent.getValue();
E. ServletContextListenerEvent.getName();
F. ServletContextListenerEvent.getValue();

8). PRAGMA header settings usually specify implementation-specific directives EXCEPT for
A. no-cache
B. date
C. method
D. upgrade

9). Which three terms identify the ways an HTML author may set the width of a table?
(Select 3)
A. Selected
B. Weighted
C. Fixed
D. Percentage
E. Proportional

10).Which tag associates a CSS to a HTML page?
A. link
B. import
C. CSS
D. br
E. A Ref

11). A servlet instantiates a JavaBean and stores it in the request object using the following code: com.mybean.Employee worker = new com.mybean.Employee(); request.setAttribute("employee", worker); The servlet then forwards the request on to a JSP for further processing. Which of the following allows the JSP to retrieve the JavaBean that the servlet stored in the request?
A. <%@ include file="com.mybean.Employee" %>
B. <jsp:useBean id="employee" class="com.mybean.Employee" scope="session" />
C. <jsp:useBean id="worker" class="com.mybean.Employee" scope="session" />
D. <jsp:useBean id="employee" class="com.mybean.Employee" scope="request" />
E. <jsp:useBean id="worker" class="com.mybean.Employee" scope="request" />
F. <jsp:useBean id="worker" class="com.mybean.Employee" />



Thanks

Sean
 
Ranch Hand
Posts: 185
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Sean,
Man these some questions are amazingly complex.

Web Services
=============

1. A
2. B
3. B, D
4. A
5. C
6. dont know
7. A
8. A, C
9. C
10.D


Web
========
Hmm... the questions are pretty tough!.. I will give them a try

1. B
2. B
3. not done EJB
4. not done EJB
5. B, D
6. maybe B
7. A
8. maybe D
9. BCD
10.A, B
11.D

Tell the correct answers please!
 
Sheriff
Posts: 14691
16
Eclipse IDE VI Editor Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can you tell us where you took these questions from ? And also tell us what your answers are.
 
Sean Hetfield
Ranch Hand
Posts: 83
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey Gyus,

Most of these questions are from :https://coderanch.com/t/145046/po/certification/IBM-passed

And I currently working on them to find out the answers. Please everybody share his idea to these questions.

I also forgot to mention that some of the questions need two or more answers and here is the updated questions:


1). Asynchronous Web Services are supported by applications written to which two specifications?
(Select 2)
A. JAXM
B. JAX-RPC
C. JAXP
D. JAXR
E. JAXB

2). Which tag fragment indicates a document is described by a Schema rather than a DTD?
A. xmlns
B. doctype
C. pcdata
D. element

3). Which two of the following are essential features of a Web Service?
(Select 2)
A. ASCII encoding
B. XML message exchange
C. URI application identification
D. HTTP network protocol

4). What mechanism does a SOAP server use to report an error?
A. A single <fault> element in the message body
B. A single <fault> element in the message header
C. Multiple <fault> elements in the message body
D. Multiple <fault> elements in the message header

5). Which Web Service specification functions most like IIOP or JRMP?
A. UDDI
B. SOAP
C. WSDL
D. CORBA
E. RMI

6). All of the following are a part of XSL EXCEPT:
A. XPATH
B. XSLT
C. XSLV
D. XSL-FO

7). All of the following can be passed in a JAX-RPC remote method invocation EXCEPT:
A. Remote References
B. String Arrays
C. JavaBeans
D. BigDecimal objects

8). If a SOAP processing error occurs and a fault element is included in a SOAP message, which two of the following elements are REQUIRED under the fault element? (choose 2)
A. <faultcode>
B. <faultactor>
C. <faultstring>
D. <detail>
E. <faultstate>

9) JAX-RPC requires support for which type of HTTP security authentication?
A. Basic
B. Form
C. Client-Cert
D. Custom

10) Which section of a WSDL document contains the URI for the Web service endpoint?
A. portType
B. message
C. binding
D. service


WEB


1) Aservlet called via a getRequestDispatcher().forward method will have which of the following request attributes automatically set for it? (choose 2)
A. request uri
B. conrext path
C. remote host
D. servlet path

2) Which of the following two classes/interfaces must the HttpSession interfaces be able to store? (choose 2)
A. EJBHandle
B. JavaBean implementing Serializable
C. PrintWriter
D. UserTransaction
E. ServletContext

3) In an travel booking Web application, a servlet calls a method on an EJB to alter the date on an airline ticket. What shoul the servlet do if the result of the method call is an application-level exception?
A. Because transactions are automatically rolled back when EJB method throws an exception, the servlet need only inform the client that the change cannot be performed.
B. Because application-level exception in EJB do not automatically cause transaction rollback, the servlet should call code to ensure the original booking is not cancelled before returning a message to the client.
C. After calling the EJB, the servlet has no further responsibilities. Transaction rollback and routing the exception to a JSP error page is specified in the Web deployment descriptor.
D. The servlet avoid the problem by calling code to verify that a seat is available for the new date before initiating the change booking operation.

4) Which two of the following must have references in the Web DD? (choose 2)
A. EJB Containers
B. J2EE Application Clients
C. Message Destinations
D. EJBs

5) An employee bean is the only attribute in the session scope and appears in no other scope and exposes a name properly through getName() and setName() methods. Which two of the following provides non-scripting alternatives to the JSP expression <%= ((Employee)session.getAttribute(�employee�).getName()%>?
A. ${name}
B. ${employee.name}
C. ${employee.getName()}
D. ${sessionScope.employee.name}
E. ${sessionScope.employee.getname()}

6)Which of the following HTML meta tags ensure the response page is not cached on a browser regardless of wether the protocol is HTTP 1.0 or HTTP 1.1:
A. <METAHTTP-EQUIV=�CACHE-CONTROL� CONTENT=�NO-CACHE�><METAHTTP-EQUIV=�EXPIRES� CONTENT=�0�>
B. <METAHTTP-EQUIV=�PRAGMA� CONTENT=�NO-CACHE�><METAHTTP-EQUIV=�CACHE-CONTROL� CONTENT=�NO-CACHE�>
C. <METAHTTP-EQUIV=�PRAGMA� CONTENT=�NO-CACHE�><METAHTTP-EQUIV=�EXPIRES� CONTENT=�NO-CACHE�>
D. <METAHTTP-EQUIV=�PRAGMA� CONTENT=�NO-CACHE�><METAHTTP-EQUIV=�EXPIRES� CONTENT=�0�>

7). Which of the following methods would return the name of an object stored in the servlet context that has been removed or replaced?
A. ServletContextAttributeEvent.getName();
B. ServletContextAttributeEvent.getValue();
C. ServletContextEvent.getName();
D. ServletContextEvent.getValue();
E. ServletContextListenerEvent.getName();
F. ServletContextListenerEvent.getValue();

8). PRAGMA header settings usually specify implementation-specific directives EXCEPT for
A. no-cache
B. date
C. method
D. upgrade

9). Which three terms identify the ways an HTML author may set the width of a table?
(Select 3)
A. Selected
B. Weighted
C. Fixed
D. Percentage
E. Proportional

10).Which tag associates a CSS to a HTML page?
A. link
B. import
C. CSS
D. br
E. A Ref

11). A servlet instantiates a JavaBean and stores it in the request object using the following code: com.mybean.Employee worker = new com.mybean.Employee(); request.setAttribute("employee", worker); The servlet then forwards the request on to a JSP for further processing. Which of the following allows the JSP to retrieve the JavaBean that the servlet stored in the request?
A. <%@ include file="com.mybean.Employee" %>
B. <jsp:useBean id="employee" class="com.mybean.Employee" scope="session" />
C. <jsp:useBean id="worker" class="com.mybean.Employee" scope="session" />
D. <jsp:useBean id="employee" class="com.mybean.Employee" scope="request" />
E. <jsp:useBean id="worker" class="com.mybean.Employee" scope="request" />
F. <jsp:useBean id="worker" class="com.mybean.Employee" />
 
Sean Hetfield
Ranch Hand
Posts: 83
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Any idea?
 
Christophe Verré
Sheriff
Posts: 14691
16
Eclipse IDE VI Editor Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Any idea?


You're asking too much. Don't expect people to help you if you flood your post with loads of questions. Ask bits by bits, and only those you really do not understand.

Most of this is not related to SCWCD, so I'm moving it to the forum where you've found the questions.
 
Everyone is a villain in someone else's story. Especially this devious tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic