Which of the following statements is true about the Unified Task List portlet?
A. The Unified Task List portlet integrates only with IBM WebSphere Process Server workflows.
B. The Unified Task List portlet can be customized to access, retrieve, and format tasks from multiple different backend workflow managementsystems.
C. The Unified Task List portlet offers built-in integration with IBM WebSphere Process Server workflows and IBM Web Content Managerworkflows.
D. The Unified Task List portlet can integrate with any standard Java JCA connectors.
Which of the following statements is true when using a resource URL in AJAX?
A. Changing state of the portlet is not allowed during the serveResource() method.
B. The portlet mode and window state can be changed during the serveResource() method.
C. New render parameters can be set during the serveResource() method.
D. Portlet preferences can be set during the serveResource() method.
In the case of a processAction or serveResource call, what is the expected behavior if an action or resource parameter has the same name as a public render parameter?
A. The public render parameter is ignored.
B. The public render parameter values must be the last entries in the parameter value array.
C. The public render parameter is appended with a unique identifier to distinguish it from the action/resource parameter.
D. The public render parameter takes precedence and overwrites the value of the action/resource parameter.
Matt is developing an interactive AJAX widget that will allow content approvers to review content without leaving their home page. Which IBM Web Content Manager API feature should he use?
A. Web Services
B. JSP Tags
C. REST Services
D. Managed Pages
The following code sample is an excerpt from an implementation of a custom ExplicitLoginFilter.

Evan needs to implement custom logic to check whether the user needs to accept an updated user agreement. Which one of the following lines of code allows the user to be sent the friendly IBM WebSphere Portal URL 'acceptAgreement,' if the checkUser method returns true?
A. resp.sendRedirect("/wps/myportal/acceptAgreement");
B. portalLoginContext.setRedirectURL("/wps/myportal/acceptAgreement");
C. RequestDispatcher rd = req.getRequestDispatcher("/wps/myportal/acceptAgreement"); rd.forward(req, resp);
D. RequestDispatcher rd = req.getRequestDispatcher("/wps/myportal/acceptAgreement"); rd.include(req, resp);
A client named Rudy's Rocking Hot Rods sells high-end motor vehicles through its customized portal. When a user logs in, they are presented with several combinations of portlets and iWidgets. The user can select a car model, color, customize finishes, and perform other applicable actions. As part of a new development phase, the client has requested two updates: 1) Wire Portlet ABC to send an event to the iWidget XYZ. 2) Wire iWidget XYZ to send an event to the Portlet RSA.
What option below is not correct, assuming all portlets on the page are JSR 286- compatible?
A. If Portlet ABC defines a Java class in its portlet.xml under the
B. iWidget XYZ will be able to receive events from Portlet ABC and send events to Portlet RSA.
C. If Portlet ABC uses a custom type defined as follows:
D. When passing a mashup type from iWidget XYZ to Portlet RSA, which uses XSD types, that type must be manually converted because IBM WebSphere Portal does not provide an automatic type conversion mechanism.
Stella is developing a CSS sub-contribution component for her custom module. Which of the followings statements is incorrect regarding CSS sub-contribution types?
A. CSS sub-contributions are only valid under a head contribution type.
B. The URL referenced in CSS sub-contribution must return valid CSS syntax.
C. CSS sub-contributions are valid under both head and config contribution types.
D. When debug is enabled, separate link elements are generated for each CSS URL.
Quinn is creating a module that adds a customized Dojo lightbox for a disclaimer to overlay the screen as soon as the page loads using dojo.addOnLoad. She has already created myLightBox.css and intends to write the JavaScript event triggering the lightbox inline. What must Quinn do to ensure she gets the desired functionality at minimal performance cost?
A. Quinn should add all this code right after the theme's
tag to ensure the functionality happens as soon as the body markup is loading.B. Quinn must add the tag pointing to myLightBox.css into the
C. Quinn must create a CSS sub-contribution type in her module pointing to myLightBox.css. The JavaScript can be added anywhere therein aslong as the page uses the default deferred profile and the event is added to the event handler.
D. Quinn should really write all CSS and JavaScript inline for performance reasons so secondary requests to the server are never made.
Which of the following options describes the rules created by selecting the Select Action rule type when creating a personalization rule?
A. Select Action rules allow pages and portlets to be hidden based on conditions expressed in the rule.
B. Select Action rules return items of content from a resource collection based on conditions expressed in the rule.
C. Select Action rules return actions for a portlet based on conditions expressed in the rule.
D. Select Action rules send a personalized email to a set of users that is defined by another rule.
Jeanelle is advising a client on modular themes in IBM Websphere Portal 8.0. Which of the following statements would be incorrect and therefore not communicated to them?
A. Global theme module contributions are defined by using a plugin.xml file.
B. A developer can define multiple CSS files for a single module by using separate
C. A developer can define up to two JavaScript locales per module by using separate
D. The contributions folder is the default folder for theme-specific JSON configurations within a given theme.