SlideShare a Scribd company logo
1 of 11
Download to read offline
 
 
 




                                                                    Lotus 190-959

                        IBM Websphere Portal 6.1 Application
                                  Development



                                                                             164 Q&A

                                                                   Version: L9.0




                                                                                      www.CertifyMe.com 
 
 
 
 

CertifyMe - King of Computer Certification

Important Information, Please Read Carefully

Other CertifyMe products
A) Offline Testing engine
Use the offline Testing engine product to practice the questions in an exam environment.
B) Study Guide (not available for all exams)
Build a foundation of knowledge which will be useful also after passing the exam.

Latest Version
We are constantly reviewing our products. New material is added and old material is
updated. Free updates are available for 90 days after the purchase. You should check your
member zone at CertifyMe and update 3-4 days before the scheduled exam date.
Here is the procedure to get the latest version:
1.Go towww.certifyme.com
2.Click on Member zone/Log in (right side)
3. Then click My Account
4.The latest versions of all purchased products are downloadable from here. Just click the
links.
For most updates,it is enough just to print the new questions at the end of the new version, not the
whole document.

Feedback
If you spot a possible improvement then please let us know. We always interested in
improving product quality.
Feedback should be send to feedback@certifyme.com. You should include the following:
Exam number, version, page number, question number, and your login ID.
Our experts will answer your mail promptly.

Copyright
Each PDF file contains a unique serial number associated with your particular name and
contact information for security purposes. So if we find out that a particular PDF file is
being distributed by you, CertifyMe reserves the right to take legal action against you
according to the International Copyright Laws.

Explanations
This product does not include explanations at the moment. If you are interested in
providing explanations for this exam, please contact feedback@certifyme.com.




                                                                                      www.CertifyMe.com 
 
 
 
 
1. An insurance company would like to target specific content to users who live in the northeast and own

auto insurance. These attribute values can be accessed from the users profile. What type of portal

personalization can be used to identify this user segment and target specific content to them?

A.Rules Engine

B.Simple Filtering

C.Attribute Filtering

D.Collaborative FilteringWHelveticaArialZ

Answer: A



2. What WebSphere Portal V6.1 installation option is best suited for an optimized development

environment?

A.Debug Installation Option

B.Performance Installation Option

C.Development Installation Option

D.Administration Installation Option WHelveticaArialZ

Answer: D



3. Jerome is attempting to use Rational Application Developer to debug a portal application on a remote

server but the connection is consistently failing. What configuration option is available in Rational

Application Developer to potentially fix this problem?

A.Enable caching under Window -> Preferences -> Internet -> Cache.

B.Right-click on the server in the Servers view and select Restart -> Debug.

C.Increase the Debugger Timeout setting under Window -> Preferences -> Java -> Debug.

D.Select           Skip        breakpoints               during         a      Run         to     Line     operation   under   Window   ->   Java   ->

Run/Debug.WHelveticaArialZ

Answer: C



4. What content is displayed when accessing TestPortlet in the VIEW mode?

public class TestPortlet extends javax.portlet.GenericPortlet {

public void doView(RenderRequest request, RenderResponse response) throws PortletException,

                                                                                      www.CertifyMe.com 
 
 
 
 
IOException {

response.setContentType(request.getResponseContentType());

response.getWriter().println("Executing CertTrialPortlet.doView()");

}

@RenderMode(name="view")

public void handleView(RenderRequest request, RenderResponse response)throws PortletException,

IOException{

response.setContentType("text/html");

response.getWriter().println("Executing CertTrialPortlet.handleView()");

}

}

A.Executing CertTrialPortlet.doView()

B.Executing CertTrialPortlet.handleView()

C.IllegalStateException because you cannot have both @RenderMode=view and doView() in same portlet

D.Compiler error indicating that you cannot have both @RenderMode=view and doView() in TestPortlet

class. WHelveticaArialZ

Answer: B



5. Evan is developing a WSRP 2.0 Compliant portlet and he wants to send a custom java object Sample as

an event to the WSRP 2.0 Compliant remote portlet. What changes should he make to the Sample class

public class Sample{

private String hello;

public String getHello(){

return hello;

}

public void setHello(String hello){

this.hello = hello;

}

}

A.He should mark Sample class as Serializable

                                                                                      www.CertifyMe.com 
 
 
 
 
B.He should mark Sample class as Serializable as well as JAXB Serializable by adding @XmlRootElement

annotation

C.He should mark Sample class as Serializable as well as JAXB Serializable by adding @XmlSerializable

annotation

D.You cannot pass complex objects to the remote portlet. WHelveticaArialZ

Answer: B



6. The following code demonstrates an example for theme extensions

Which one of the following is TRUE about the code?

A.This code can be included in portlet or theme jsp.

B.This code can be included only in the theme or skin jsps.

C.Extension Point com.ibm.portal.theme.plugin.SimpleLinks is not defined in plugin.xml

D.This code displays the title of all the extensions of type SimpleLinksWHelveticaArialZ

Answer: B



7. Don needs to parse an ATOM feed return from a REST based service. Which of the following frameworks

is a supported solution for parsing ATOM feeds using Java and AJAX?

A.The DOJO Toolkit 1.1

B.WebSphere Feature Pack for Web 2.0

C.WebSphere Feature Pack for Web Services

D.Java Architecture for XML Bindings (JAXB) WHelveticaArialZ

Answer: B



8. The marketing department wants to create a new promotion portal page to attract return customers. The

page can only be included in the portal navigation by customers who have made a purchase in the last 30

days. Which of the following options will permit the new page to be displayed to only customers who made

a purchase is the last 30 days?

A.Using the Manage Pages portlet, edit the page parameter to reference an application visibility policy.

Create a new policy that uses the recentPurchaseDate user attribute to set the page visible if the date is

less than 31 day old.

                                                                                      www.CertifyMe.com 
 
 
 
 
B.Create a visibility rule that uses the recentPurchaseDate user attribute to return true if the date is less

than 31 days old. Then use the Edit Page Properties portlet to select the rule.

C.Create a visibility policy that uses the recentPurchaseDate user attribute to return true if the date is less

than 31 days old. Then use the Edit Page Properties portlet to select the policy.

D.Using the Resource Policy portlet, select page resources, and select the new promotion page assign

access option. Next select the users role. Add a visibility rule that uses the recentPurchaseDate user

attribute to return true if the date is less than 31 days old. WHelveticaArialZ

Answer: B



9. The Web 2.0 theme with support for client-side aggregation is based on the differential page rendering

(DPR) model. What key performance feature is provided by DPR?

A.Caching of portlet content.

B.Automatically converts server side portlets to client side portlets.

C.Only refreshes portions of the page that were affected by user interaction.

D.Allows faster performing portlets to render prior to slower running portlets.WHelveticaArialZX

Answer: C



10. Unlike server-side aggregation portal pages using client-side aggregation log errors to the client. When

using client-side aggregation how can errors logged to the client be viewed from the server?

A.They cant be viewed on the server.

B.Add          isDebug:true               to      debugOptions.jspf,                    load        a      page     using    client-side   aggregation,   add

javascript:toggleDebugForm() to browser address bar

C.Add           isDebug:true                 to       Default.jsp,              load         a        page        using     client-side    aggregation,   add

javascript:toggleDebugForm() to browser address bar

D.Add           isDebug:true               to      headExtras.jspf,                  load         a        page    using     client-side   aggregation,   add

javascript:toggleDebugConsole() to browser address barWHelveticaArialZ

Answer: D



11. What additional step is necessary when deploying the Remote Rendering Portlet to a page that uses

the client-side aggregation mode?

                                                                                      www.CertifyMe.com 
 
 
 
 
A.No additional steps are necessary.

B.Remove the Remote Rendering Portlet from the blacklist.

C.Create an HTTP proxy for AJAX to allow the portlet to render content

D.This is not possible as the Remote Rendering Portlet is not compatible with Portal Web 2.0

theme.WHelveticaArialZ

Answer: C



12. Evan is developing a Composite Application and some portlets come from a third party vendor. What

would be the best means to force Server Side Aggregation mode for the page in the Composite

Application?

A.Add the portlet UID found in the web.xml to the Portlet Blacklist.

B.Define a Composite Application policies to force Sever Side Aggregation

C.Add the RenderMode page parameter to force Server Side Aggregation.

D.Add custom logic in the theme to trigger the isSSA and isCSA page variables.WHelveticaArialZ

Answer: C



13. Cheng is developing a portlet which is not compatible with the Client Side Aggregation mode. What is

the best means to indicate that this portlet only supports Server Side Aggregation mode?

A.Set the com.ibm.wps.web2.renderMode context parameter in the portlet.xml

B.Set the com.ibm.wps.web2.renderMode init parameter in the portlet.xml

C.Set the com.ibm.wps.web2.renderMode portlet preference in the portlet.xml

D.Set the com.ibm.wps.web2.renderMode context parameter in the web.xmlWHelveticaArialZ

Answer: B



14. A customer has requirements to remotely search portal user profiles based on attributes of the profile

using web services. How can this be accomplished in portal?

A.By means of the Remote Portal Search Service

B.By means of the Remote PUMA SPI REST Service

C.By means of the Remote Virtual Member Manager Service

D.By means of the user repository APIs and wrap web services around API callsWHelveticaArialZ

                                                                                      www.CertifyMe.com 
 
 
 
 
Answer: B



15. A new site needs to be created within portal with its own title, user repository, default content, and

branding. What single portlet is provided for creating a new site within portal?

A.Content Authoring Portlet

B.Theme Customizer Portlet

C.Virtual Portal Manager Portlet

D.New Site Creation Wizard Portlet WHelveticaArialZ

Answer: D



16. Whats is a processing advantage of public parameters over eventing?

A.No action phase required.

B.No limits to the payload data.

C.No need to distribute events to portlets.

D.Notifications are handled by the browser.WHelveticaArialZ

Answer: A



17. Aside from normal steps for deploying portlets to a page what additional step, if any, is necessary to

configure a portlet using the Struts MVC Framework and a portlet using the Java Server Faces Framework

to the same portal page?

A.Server side aggregation must be forced on page

B.Both portlets must comply with the JSR168 Portlet Specification

C.No additional steps are required

D.Framework Jars must be added to WebSphere Application Server Shared LibrariesWHelveticaArialZ

Answer: C



18. What two portlet frameworks are built upon the Model View Controller pattern?

A.Basic Portlet and IBM Portlet Frameworks

B.Faces Portlet and Struts Portlet Frameworks

C.JSR 168 Portlet and IBM Portlet Frameworks

                                                                                      www.CertifyMe.com 
 
 
 
 
D.JSR 168 Portlet and JSR 268 Portlet FrameworksWHelveticaArialZ

Answer: B



19. Which portlet framework is designed to understand two-phase request processing?

A.Faces Portlet Framework

B.Struts Portlet Framework

C.Spring Portlet Framework

D.JSR 268 Portlet FrameworkWHelveticaArialZ

Answer: C



20. How can a non-J2EE web application located on a separate domain from portal be integrated into portal

without programming and provide bookmarkability?

A.Configure non-J2EE application to display within RSS Portlet

B.Configure non-J2EE application to display within iFrame Portlet

C.Configure non-J2EE application to display within Web Content Viewer Portlet

D.Configure                non-J2EE                application              to       display               within   WebSphere   Application   Integrator

PortletWHelveticaArialZ

Answer: D



21. A remote portlet is integrated into a portal implementation using WSRP. What new WSRP 2.0 feature is

enabled in WebSphere Portal 6.1 for sharing parameters with other portlets without the wiring the producer

and consumer portlet ?

A.Eventing

B.Cookie Handling

C.Resource Serving

D.Public Render ParametersWHelveticaArialZ

Answer: D



22. A medical equipment manufacturer has upgraded to WebSphere Portal V6.1 and would like to leverage

features available in portlets running on a separate corporate portal. It is decided the integration will be

                                                                                      www.CertifyMe.com 
 
 
 
 
implemented using WSRP 2.0. At a minimum what must be done in order to take advantage of the new

WSRP 2.0 features such as resource serving in WebSphere Portal V6.1?

A.Enable WSRP 2.0 in administration console.

B.Build a consumer portlet based on the JSR 168 Portlet specification

C.Build a consumer portlet based on the JSR 268 Portlet specification

D.Integration with WSRP 2.0 not supported in WebSphere Portal V6.1WHelveticaArialZ

Answer: C



23. What is the outcome of the com.ibm.portal.auth.stepupStepUpAuthHandlers establishAuthLevel

method implementation returning null?

A.Null pointer exception is thrown

B.User is redirected to portal login page

C.Error 404 "Page not found" is the error page displayed

D.Authentication level is assumed to be successfully established WHelveticaArialZ

Answer: D



24. Cheng is a registered user of his companys intranet portal. He accesses the portal by means of a web

browser with a valid RememberMe cookie but he has not logged into the portal during the current session.

How does the portal treat Cheng?

A.Identified and authenticated

B.Identified and unauthenticated

C.Unidentified and authenticated

D.Unidentified and unauthenticatedWHelveticaArialZ

Answer: B



25. A bookstore using portal would like to provide recommendations for books to identified users. The user

profile attributes are limited to username, first name, last name, and location but there is an abundance of

information about the users ratings of books theyve purchased or read. Which personalization filtering type

is most appropriate for this situation?

A.Rules Engine

                                                                                      www.CertifyMe.com 
 
Pass Your Exam at First Attempt with 100% Pass Guarantee
            Buy Full Version of 190-959 Exam
                            at
          http://www.certifyme.com/190-959.htm

More Related Content

What's hot

Force.com Canvas - a Quick Introduction
Force.com Canvas - a Quick IntroductionForce.com Canvas - a Quick Introduction
Force.com Canvas - a Quick IntroductionSteven Herod
 
IBM MobileFirst Platform v7.0 POT Offers Lab v1.0
IBM MobileFirst Platform v7.0 POT Offers Lab v1.0IBM MobileFirst Platform v7.0 POT Offers Lab v1.0
IBM MobileFirst Platform v7.0 POT Offers Lab v1.0Banking at Ho Chi Minh city
 
oracle srm refresher training and new functionality including dark posts
oracle srm refresher training and new functionality including dark postsoracle srm refresher training and new functionality including dark posts
oracle srm refresher training and new functionality including dark postsAsphri457
 
SGCertifiedPlatformDeveloperI
SGCertifiedPlatformDeveloperISGCertifiedPlatformDeveloperI
SGCertifiedPlatformDeveloperIMonika Shewale
 
Joomla Website Development Company
Joomla Website Development CompanyJoomla Website Development Company
Joomla Website Development CompanySanjay Kumar
 
Dive Deep Into the Force.com Canvas Framework
Dive Deep Into the Force.com Canvas FrameworkDive Deep Into the Force.com Canvas Framework
Dive Deep Into the Force.com Canvas FrameworkSalesforce Developers
 
HTML Designer Certification
HTML Designer CertificationHTML Designer Certification
HTML Designer CertificationVskills
 
TDC2016SP - Trilha Mobile
TDC2016SP - Trilha MobileTDC2016SP - Trilha Mobile
TDC2016SP - Trilha Mobiletdc-globalcode
 
Part 5 running java applications
Part 5 running java applicationsPart 5 running java applications
Part 5 running java applicationstechbed
 
Cocoa Programming Certification
Cocoa Programming CertificationCocoa Programming Certification
Cocoa Programming CertificationVskills
 
VMware IT Academy Agreement
VMware IT Academy AgreementVMware IT Academy Agreement
VMware IT Academy AgreementVMware Academy
 
Integrating Web Apps with Canvas - Salesforce1 World Tour
Integrating Web Apps with Canvas - Salesforce1 World TourIntegrating Web Apps with Canvas - Salesforce1 World Tour
Integrating Web Apps with Canvas - Salesforce1 World TourRichard Donkin
 
IBM MobileFirst Platform Pot Sentiment Analysis v3
IBM MobileFirst Platform Pot Sentiment Analysis v3IBM MobileFirst Platform Pot Sentiment Analysis v3
IBM MobileFirst Platform Pot Sentiment Analysis v3Banking at Ho Chi Minh city
 
Magento 2 Advance Shop By Brand Extension
Magento 2 Advance Shop By Brand ExtensionMagento 2 Advance Shop By Brand Extension
Magento 2 Advance Shop By Brand ExtensionAppJetty
 
IBM MobileFirst Platform v7.0 POT App Mgmt Lab v1.1
IBM MobileFirst Platform  v7.0 POT App Mgmt Lab v1.1IBM MobileFirst Platform  v7.0 POT App Mgmt Lab v1.1
IBM MobileFirst Platform v7.0 POT App Mgmt Lab v1.1Banking at Ho Chi Minh city
 
IBM MobileFirst Platform 7.0 POT InApp Feedback V0.1
IBM MobileFirst Platform 7.0 POT InApp Feedback V0.1IBM MobileFirst Platform 7.0 POT InApp Feedback V0.1
IBM MobileFirst Platform 7.0 POT InApp Feedback V0.1Banking at Ho Chi Minh city
 
Magento 2 Advance Shop By Brand Extension, Display Logo Slider on Store
Magento 2 Advance Shop By Brand Extension, Display Logo Slider on StoreMagento 2 Advance Shop By Brand Extension, Display Logo Slider on Store
Magento 2 Advance Shop By Brand Extension, Display Logo Slider on StoreBiztech Store
 

What's hot (20)

Force.com Canvas - a Quick Introduction
Force.com Canvas - a Quick IntroductionForce.com Canvas - a Quick Introduction
Force.com Canvas - a Quick Introduction
 
IBM MobileFirst Platform v7.0 POT Offers Lab v1.0
IBM MobileFirst Platform v7.0 POT Offers Lab v1.0IBM MobileFirst Platform v7.0 POT Offers Lab v1.0
IBM MobileFirst Platform v7.0 POT Offers Lab v1.0
 
oracle srm refresher training and new functionality including dark posts
oracle srm refresher training and new functionality including dark postsoracle srm refresher training and new functionality including dark posts
oracle srm refresher training and new functionality including dark posts
 
SGCertifiedPlatformDeveloperI
SGCertifiedPlatformDeveloperISGCertifiedPlatformDeveloperI
SGCertifiedPlatformDeveloperI
 
Joomla Day2
Joomla Day2Joomla Day2
Joomla Day2
 
Joomla Website Development Company
Joomla Website Development CompanyJoomla Website Development Company
Joomla Website Development Company
 
Dive Deep Into the Force.com Canvas Framework
Dive Deep Into the Force.com Canvas FrameworkDive Deep Into the Force.com Canvas Framework
Dive Deep Into the Force.com Canvas Framework
 
HTML Designer Certification
HTML Designer CertificationHTML Designer Certification
HTML Designer Certification
 
TDC2016SP - Trilha Mobile
TDC2016SP - Trilha MobileTDC2016SP - Trilha Mobile
TDC2016SP - Trilha Mobile
 
Part 5 running java applications
Part 5 running java applicationsPart 5 running java applications
Part 5 running java applications
 
Karim mahmoud cv
Karim mahmoud cvKarim mahmoud cv
Karim mahmoud cv
 
Cocoa Programming Certification
Cocoa Programming CertificationCocoa Programming Certification
Cocoa Programming Certification
 
VMware IT Academy Agreement
VMware IT Academy AgreementVMware IT Academy Agreement
VMware IT Academy Agreement
 
Integrating Web Apps with Canvas - Salesforce1 World Tour
Integrating Web Apps with Canvas - Salesforce1 World TourIntegrating Web Apps with Canvas - Salesforce1 World Tour
Integrating Web Apps with Canvas - Salesforce1 World Tour
 
IBM MobileFirst Platform Pot Sentiment Analysis v3
IBM MobileFirst Platform Pot Sentiment Analysis v3IBM MobileFirst Platform Pot Sentiment Analysis v3
IBM MobileFirst Platform Pot Sentiment Analysis v3
 
Magento 2 Advance Shop By Brand Extension
Magento 2 Advance Shop By Brand ExtensionMagento 2 Advance Shop By Brand Extension
Magento 2 Advance Shop By Brand Extension
 
IBM MobileFirst Platform v7.0 POT App Mgmt Lab v1.1
IBM MobileFirst Platform  v7.0 POT App Mgmt Lab v1.1IBM MobileFirst Platform  v7.0 POT App Mgmt Lab v1.1
IBM MobileFirst Platform v7.0 POT App Mgmt Lab v1.1
 
IBM MobileFirst Platform 7.0 POT InApp Feedback V0.1
IBM MobileFirst Platform 7.0 POT InApp Feedback V0.1IBM MobileFirst Platform 7.0 POT InApp Feedback V0.1
IBM MobileFirst Platform 7.0 POT InApp Feedback V0.1
 
32916
3291632916
32916
 
Magento 2 Advance Shop By Brand Extension, Display Logo Slider on Store
Magento 2 Advance Shop By Brand Extension, Display Logo Slider on StoreMagento 2 Advance Shop By Brand Extension, Display Logo Slider on Store
Magento 2 Advance Shop By Brand Extension, Display Logo Slider on Store
 

Viewers also liked

Learn BEM: CSS Naming Convention
Learn BEM: CSS Naming ConventionLearn BEM: CSS Naming Convention
Learn BEM: CSS Naming ConventionIn a Rocket
 
SEO: Getting Personal
SEO: Getting PersonalSEO: Getting Personal
SEO: Getting PersonalKirsty Hulse
 
How to Build a Dynamic Social Media Plan
How to Build a Dynamic Social Media PlanHow to Build a Dynamic Social Media Plan
How to Build a Dynamic Social Media PlanPost Planner
 

Viewers also liked (9)

190 957
190 957190 957
190 957
 
190 981
190 981190 981
190 981
 
190 980
190 980190 980
190 980
 
190 981
190 981190 981
190 981
 
190 982
190 982190 982
190 982
 
190 956
190 956190 956
190 956
 
Learn BEM: CSS Naming Convention
Learn BEM: CSS Naming ConventionLearn BEM: CSS Naming Convention
Learn BEM: CSS Naming Convention
 
SEO: Getting Personal
SEO: Getting PersonalSEO: Getting Personal
SEO: Getting Personal
 
How to Build a Dynamic Social Media Plan
How to Build a Dynamic Social Media PlanHow to Build a Dynamic Social Media Plan
How to Build a Dynamic Social Media Plan
 

Similar to 190 959

9 a0 046
9 a0 0469 a0 046
9 a0 046Almo56
 
EE0-600 Exam Questions
EE0-600 Exam QuestionsEE0-600 Exam Questions
EE0-600 Exam Questionsadbil98
 
9 a0 056
9 a0 0569 a0 056
9 a0 056Almo56
 
16 asp.net session23
16 asp.net session2316 asp.net session23
16 asp.net session23Vivek chan
 
Microsoft MCPD 70-492 it examen dumps
Microsoft MCPD 70-492 it examen dumpsMicrosoft MCPD 70-492 it examen dumps
Microsoft MCPD 70-492 it examen dumpslilylucy
 
Build single page applications using AngularJS on AEM
Build single page applications using AngularJS on AEMBuild single page applications using AngularJS on AEM
Build single page applications using AngularJS on AEMAdobeMarketingCloud
 
Build single page applications using AngularJS on AEM
Build single page applications using AngularJS on AEMBuild single page applications using AngularJS on AEM
Build single page applications using AngularJS on AEMAdobeMarketingCloud
 
Build single page applications using AngularJS on AEM
Build single page applications using AngularJS on AEMBuild single page applications using AngularJS on AEM
Build single page applications using AngularJS on AEMconnectwebex
 
MuleSoft Certified Platform Architect Exam Dumps 2023.pdf
MuleSoft Certified Platform Architect Exam Dumps 2023.pdfMuleSoft Certified Platform Architect Exam Dumps 2023.pdf
MuleSoft Certified Platform Architect Exam Dumps 2023.pdfSkillCertProExams
 
Benefits of the CodeIgniter Framework
Benefits of the CodeIgniter FrameworkBenefits of the CodeIgniter Framework
Benefits of the CodeIgniter FrameworkToby Beresford
 
Justmeans power point
Justmeans power pointJustmeans power point
Justmeans power pointjustmeanscsr
 
310-053 Exam-Sun Certified Enterprise Architect, Java, EE5 Upgrade
310-053 Exam-Sun Certified Enterprise Architect, Java, EE5 Upgrade 310-053 Exam-Sun Certified Enterprise Architect, Java, EE5 Upgrade
310-053 Exam-Sun Certified Enterprise Architect, Java, EE5 Upgrade Isabella789
 
M365 global developer bootcamp 2019 PA
M365 global developer bootcamp 2019  PAM365 global developer bootcamp 2019  PA
M365 global developer bootcamp 2019 PAThomas Daly
 
Foundation and PathwaysCOS10020 Creating Web Application.docx
Foundation and PathwaysCOS10020 Creating Web Application.docxFoundation and PathwaysCOS10020 Creating Web Application.docx
Foundation and PathwaysCOS10020 Creating Web Application.docxhanneloremccaffery
 
EE0-515 Exam Questions
EE0-515 Exam QuestionsEE0-515 Exam Questions
EE0-515 Exam Questionsadbil98
 
Testing with test_complete
Testing with test_completeTesting with test_complete
Testing with test_completebinuiweb
 
Microsoft AZ-204 Exam Dumps
Microsoft AZ-204 Exam DumpsMicrosoft AZ-204 Exam Dumps
Microsoft AZ-204 Exam DumpsStudy Material
 
Citrix StoreFront - Implementation Guide
Citrix StoreFront - Implementation GuideCitrix StoreFront - Implementation Guide
Citrix StoreFront - Implementation GuideNuno Alves
 

Similar to 190 959 (20)

000 252
000 252000 252
000 252
 
9 a0 046
9 a0 0469 a0 046
9 a0 046
 
EE0-600 Exam Questions
EE0-600 Exam QuestionsEE0-600 Exam Questions
EE0-600 Exam Questions
 
9 a0 056
9 a0 0569 a0 056
9 a0 056
 
16 asp.net session23
16 asp.net session2316 asp.net session23
16 asp.net session23
 
Microsoft MCPD 70-492 it examen dumps
Microsoft MCPD 70-492 it examen dumpsMicrosoft MCPD 70-492 it examen dumps
Microsoft MCPD 70-492 it examen dumps
 
Build single page applications using AngularJS on AEM
Build single page applications using AngularJS on AEMBuild single page applications using AngularJS on AEM
Build single page applications using AngularJS on AEM
 
Build single page applications using AngularJS on AEM
Build single page applications using AngularJS on AEMBuild single page applications using AngularJS on AEM
Build single page applications using AngularJS on AEM
 
Build single page applications using AngularJS on AEM
Build single page applications using AngularJS on AEMBuild single page applications using AngularJS on AEM
Build single page applications using AngularJS on AEM
 
MuleSoft Certified Platform Architect Exam Dumps 2023.pdf
MuleSoft Certified Platform Architect Exam Dumps 2023.pdfMuleSoft Certified Platform Architect Exam Dumps 2023.pdf
MuleSoft Certified Platform Architect Exam Dumps 2023.pdf
 
Benefits of the CodeIgniter Framework
Benefits of the CodeIgniter FrameworkBenefits of the CodeIgniter Framework
Benefits of the CodeIgniter Framework
 
Justmeans power point
Justmeans power pointJustmeans power point
Justmeans power point
 
310-053 Exam-Sun Certified Enterprise Architect, Java, EE5 Upgrade
310-053 Exam-Sun Certified Enterprise Architect, Java, EE5 Upgrade 310-053 Exam-Sun Certified Enterprise Architect, Java, EE5 Upgrade
310-053 Exam-Sun Certified Enterprise Architect, Java, EE5 Upgrade
 
4 h0 020
4 h0 0204 h0 020
4 h0 020
 
M365 global developer bootcamp 2019 PA
M365 global developer bootcamp 2019  PAM365 global developer bootcamp 2019  PA
M365 global developer bootcamp 2019 PA
 
Foundation and PathwaysCOS10020 Creating Web Application.docx
Foundation and PathwaysCOS10020 Creating Web Application.docxFoundation and PathwaysCOS10020 Creating Web Application.docx
Foundation and PathwaysCOS10020 Creating Web Application.docx
 
EE0-515 Exam Questions
EE0-515 Exam QuestionsEE0-515 Exam Questions
EE0-515 Exam Questions
 
Testing with test_complete
Testing with test_completeTesting with test_complete
Testing with test_complete
 
Microsoft AZ-204 Exam Dumps
Microsoft AZ-204 Exam DumpsMicrosoft AZ-204 Exam Dumps
Microsoft AZ-204 Exam Dumps
 
Citrix StoreFront - Implementation Guide
Citrix StoreFront - Implementation GuideCitrix StoreFront - Implementation Guide
Citrix StoreFront - Implementation Guide
 

Recently uploaded

URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfUmakantAnnand
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 

Recently uploaded (20)

URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.Compdf
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 

190 959

  • 1.       Lotus 190-959 IBM Websphere Portal 6.1 Application Development 164 Q&A Version: L9.0                                                                                       www.CertifyMe.com   
  • 2.       CertifyMe - King of Computer Certification Important Information, Please Read Carefully Other CertifyMe products A) Offline Testing engine Use the offline Testing engine product to practice the questions in an exam environment. B) Study Guide (not available for all exams) Build a foundation of knowledge which will be useful also after passing the exam. Latest Version We are constantly reviewing our products. New material is added and old material is updated. Free updates are available for 90 days after the purchase. You should check your member zone at CertifyMe and update 3-4 days before the scheduled exam date. Here is the procedure to get the latest version: 1.Go towww.certifyme.com 2.Click on Member zone/Log in (right side) 3. Then click My Account 4.The latest versions of all purchased products are downloadable from here. Just click the links. For most updates,it is enough just to print the new questions at the end of the new version, not the whole document. Feedback If you spot a possible improvement then please let us know. We always interested in improving product quality. Feedback should be send to feedback@certifyme.com. You should include the following: Exam number, version, page number, question number, and your login ID. Our experts will answer your mail promptly. Copyright Each PDF file contains a unique serial number associated with your particular name and contact information for security purposes. So if we find out that a particular PDF file is being distributed by you, CertifyMe reserves the right to take legal action against you according to the International Copyright Laws. Explanations This product does not include explanations at the moment. If you are interested in providing explanations for this exam, please contact feedback@certifyme.com.                                                                                       www.CertifyMe.com   
  • 3.       1. An insurance company would like to target specific content to users who live in the northeast and own auto insurance. These attribute values can be accessed from the users profile. What type of portal personalization can be used to identify this user segment and target specific content to them? A.Rules Engine B.Simple Filtering C.Attribute Filtering D.Collaborative FilteringWHelveticaArialZ Answer: A 2. What WebSphere Portal V6.1 installation option is best suited for an optimized development environment? A.Debug Installation Option B.Performance Installation Option C.Development Installation Option D.Administration Installation Option WHelveticaArialZ Answer: D 3. Jerome is attempting to use Rational Application Developer to debug a portal application on a remote server but the connection is consistently failing. What configuration option is available in Rational Application Developer to potentially fix this problem? A.Enable caching under Window -> Preferences -> Internet -> Cache. B.Right-click on the server in the Servers view and select Restart -> Debug. C.Increase the Debugger Timeout setting under Window -> Preferences -> Java -> Debug. D.Select Skip breakpoints during a Run to Line operation under Window -> Java -> Run/Debug.WHelveticaArialZ Answer: C 4. What content is displayed when accessing TestPortlet in the VIEW mode? public class TestPortlet extends javax.portlet.GenericPortlet { public void doView(RenderRequest request, RenderResponse response) throws PortletException,                                                                                       www.CertifyMe.com   
  • 4.       IOException { response.setContentType(request.getResponseContentType()); response.getWriter().println("Executing CertTrialPortlet.doView()"); } @RenderMode(name="view") public void handleView(RenderRequest request, RenderResponse response)throws PortletException, IOException{ response.setContentType("text/html"); response.getWriter().println("Executing CertTrialPortlet.handleView()"); } } A.Executing CertTrialPortlet.doView() B.Executing CertTrialPortlet.handleView() C.IllegalStateException because you cannot have both @RenderMode=view and doView() in same portlet D.Compiler error indicating that you cannot have both @RenderMode=view and doView() in TestPortlet class. WHelveticaArialZ Answer: B 5. Evan is developing a WSRP 2.0 Compliant portlet and he wants to send a custom java object Sample as an event to the WSRP 2.0 Compliant remote portlet. What changes should he make to the Sample class public class Sample{ private String hello; public String getHello(){ return hello; } public void setHello(String hello){ this.hello = hello; } } A.He should mark Sample class as Serializable                                                                                       www.CertifyMe.com   
  • 5.       B.He should mark Sample class as Serializable as well as JAXB Serializable by adding @XmlRootElement annotation C.He should mark Sample class as Serializable as well as JAXB Serializable by adding @XmlSerializable annotation D.You cannot pass complex objects to the remote portlet. WHelveticaArialZ Answer: B 6. The following code demonstrates an example for theme extensions Which one of the following is TRUE about the code? A.This code can be included in portlet or theme jsp. B.This code can be included only in the theme or skin jsps. C.Extension Point com.ibm.portal.theme.plugin.SimpleLinks is not defined in plugin.xml D.This code displays the title of all the extensions of type SimpleLinksWHelveticaArialZ Answer: B 7. Don needs to parse an ATOM feed return from a REST based service. Which of the following frameworks is a supported solution for parsing ATOM feeds using Java and AJAX? A.The DOJO Toolkit 1.1 B.WebSphere Feature Pack for Web 2.0 C.WebSphere Feature Pack for Web Services D.Java Architecture for XML Bindings (JAXB) WHelveticaArialZ Answer: B 8. The marketing department wants to create a new promotion portal page to attract return customers. The page can only be included in the portal navigation by customers who have made a purchase in the last 30 days. Which of the following options will permit the new page to be displayed to only customers who made a purchase is the last 30 days? A.Using the Manage Pages portlet, edit the page parameter to reference an application visibility policy. Create a new policy that uses the recentPurchaseDate user attribute to set the page visible if the date is less than 31 day old.                                                                                       www.CertifyMe.com   
  • 6.       B.Create a visibility rule that uses the recentPurchaseDate user attribute to return true if the date is less than 31 days old. Then use the Edit Page Properties portlet to select the rule. C.Create a visibility policy that uses the recentPurchaseDate user attribute to return true if the date is less than 31 days old. Then use the Edit Page Properties portlet to select the policy. D.Using the Resource Policy portlet, select page resources, and select the new promotion page assign access option. Next select the users role. Add a visibility rule that uses the recentPurchaseDate user attribute to return true if the date is less than 31 days old. WHelveticaArialZ Answer: B 9. The Web 2.0 theme with support for client-side aggregation is based on the differential page rendering (DPR) model. What key performance feature is provided by DPR? A.Caching of portlet content. B.Automatically converts server side portlets to client side portlets. C.Only refreshes portions of the page that were affected by user interaction. D.Allows faster performing portlets to render prior to slower running portlets.WHelveticaArialZX Answer: C 10. Unlike server-side aggregation portal pages using client-side aggregation log errors to the client. When using client-side aggregation how can errors logged to the client be viewed from the server? A.They cant be viewed on the server. B.Add isDebug:true to debugOptions.jspf, load a page using client-side aggregation, add javascript:toggleDebugForm() to browser address bar C.Add isDebug:true to Default.jsp, load a page using client-side aggregation, add javascript:toggleDebugForm() to browser address bar D.Add isDebug:true to headExtras.jspf, load a page using client-side aggregation, add javascript:toggleDebugConsole() to browser address barWHelveticaArialZ Answer: D 11. What additional step is necessary when deploying the Remote Rendering Portlet to a page that uses the client-side aggregation mode?                                                                                       www.CertifyMe.com   
  • 7.       A.No additional steps are necessary. B.Remove the Remote Rendering Portlet from the blacklist. C.Create an HTTP proxy for AJAX to allow the portlet to render content D.This is not possible as the Remote Rendering Portlet is not compatible with Portal Web 2.0 theme.WHelveticaArialZ Answer: C 12. Evan is developing a Composite Application and some portlets come from a third party vendor. What would be the best means to force Server Side Aggregation mode for the page in the Composite Application? A.Add the portlet UID found in the web.xml to the Portlet Blacklist. B.Define a Composite Application policies to force Sever Side Aggregation C.Add the RenderMode page parameter to force Server Side Aggregation. D.Add custom logic in the theme to trigger the isSSA and isCSA page variables.WHelveticaArialZ Answer: C 13. Cheng is developing a portlet which is not compatible with the Client Side Aggregation mode. What is the best means to indicate that this portlet only supports Server Side Aggregation mode? A.Set the com.ibm.wps.web2.renderMode context parameter in the portlet.xml B.Set the com.ibm.wps.web2.renderMode init parameter in the portlet.xml C.Set the com.ibm.wps.web2.renderMode portlet preference in the portlet.xml D.Set the com.ibm.wps.web2.renderMode context parameter in the web.xmlWHelveticaArialZ Answer: B 14. A customer has requirements to remotely search portal user profiles based on attributes of the profile using web services. How can this be accomplished in portal? A.By means of the Remote Portal Search Service B.By means of the Remote PUMA SPI REST Service C.By means of the Remote Virtual Member Manager Service D.By means of the user repository APIs and wrap web services around API callsWHelveticaArialZ                                                                                       www.CertifyMe.com   
  • 8.       Answer: B 15. A new site needs to be created within portal with its own title, user repository, default content, and branding. What single portlet is provided for creating a new site within portal? A.Content Authoring Portlet B.Theme Customizer Portlet C.Virtual Portal Manager Portlet D.New Site Creation Wizard Portlet WHelveticaArialZ Answer: D 16. Whats is a processing advantage of public parameters over eventing? A.No action phase required. B.No limits to the payload data. C.No need to distribute events to portlets. D.Notifications are handled by the browser.WHelveticaArialZ Answer: A 17. Aside from normal steps for deploying portlets to a page what additional step, if any, is necessary to configure a portlet using the Struts MVC Framework and a portlet using the Java Server Faces Framework to the same portal page? A.Server side aggregation must be forced on page B.Both portlets must comply with the JSR168 Portlet Specification C.No additional steps are required D.Framework Jars must be added to WebSphere Application Server Shared LibrariesWHelveticaArialZ Answer: C 18. What two portlet frameworks are built upon the Model View Controller pattern? A.Basic Portlet and IBM Portlet Frameworks B.Faces Portlet and Struts Portlet Frameworks C.JSR 168 Portlet and IBM Portlet Frameworks                                                                                       www.CertifyMe.com   
  • 9.       D.JSR 168 Portlet and JSR 268 Portlet FrameworksWHelveticaArialZ Answer: B 19. Which portlet framework is designed to understand two-phase request processing? A.Faces Portlet Framework B.Struts Portlet Framework C.Spring Portlet Framework D.JSR 268 Portlet FrameworkWHelveticaArialZ Answer: C 20. How can a non-J2EE web application located on a separate domain from portal be integrated into portal without programming and provide bookmarkability? A.Configure non-J2EE application to display within RSS Portlet B.Configure non-J2EE application to display within iFrame Portlet C.Configure non-J2EE application to display within Web Content Viewer Portlet D.Configure non-J2EE application to display within WebSphere Application Integrator PortletWHelveticaArialZ Answer: D 21. A remote portlet is integrated into a portal implementation using WSRP. What new WSRP 2.0 feature is enabled in WebSphere Portal 6.1 for sharing parameters with other portlets without the wiring the producer and consumer portlet ? A.Eventing B.Cookie Handling C.Resource Serving D.Public Render ParametersWHelveticaArialZ Answer: D 22. A medical equipment manufacturer has upgraded to WebSphere Portal V6.1 and would like to leverage features available in portlets running on a separate corporate portal. It is decided the integration will be                                                                                       www.CertifyMe.com   
  • 10.       implemented using WSRP 2.0. At a minimum what must be done in order to take advantage of the new WSRP 2.0 features such as resource serving in WebSphere Portal V6.1? A.Enable WSRP 2.0 in administration console. B.Build a consumer portlet based on the JSR 168 Portlet specification C.Build a consumer portlet based on the JSR 268 Portlet specification D.Integration with WSRP 2.0 not supported in WebSphere Portal V6.1WHelveticaArialZ Answer: C 23. What is the outcome of the com.ibm.portal.auth.stepupStepUpAuthHandlers establishAuthLevel method implementation returning null? A.Null pointer exception is thrown B.User is redirected to portal login page C.Error 404 "Page not found" is the error page displayed D.Authentication level is assumed to be successfully established WHelveticaArialZ Answer: D 24. Cheng is a registered user of his companys intranet portal. He accesses the portal by means of a web browser with a valid RememberMe cookie but he has not logged into the portal during the current session. How does the portal treat Cheng? A.Identified and authenticated B.Identified and unauthenticated C.Unidentified and authenticated D.Unidentified and unauthenticatedWHelveticaArialZ Answer: B 25. A bookstore using portal would like to provide recommendations for books to identified users. The user profile attributes are limited to username, first name, last name, and location but there is an abundance of information about the users ratings of books theyve purchased or read. Which personalization filtering type is most appropriate for this situation? A.Rules Engine                                                                                       www.CertifyMe.com   
  • 11. Pass Your Exam at First Attempt with 100% Pass Guarantee Buy Full Version of 190-959 Exam at http://www.certifyme.com/190-959.htm