Certbus > IBM > IBM Certified Solution Developer > C2040-911 > C2040-911 Online Practice Questions and Answers

C2040-911 Online Practice Questions and Answers

Questions 4

Wendy's theme was recently installed on a server. A colleague provided her with theme components to deploy, which given design requirements, is packaged as an EAR file inside a compressed ZIP file. Which of the following is a valid option for deploying these components?

A. Use the web-dav-deploy-zip-file to deploy the compressed file. Use the IBM WebSphere Integrated Solutions console or scripts to deploy theEAR file. Use XMLAccess to import the components into the IBM WebSphere Portal server.

B. Use the web-dav-deploy-zip-file to deploy the compressed file. Use the webdav-expand-ear command to unpackage the EAR on the server,then register the new EAR on the WebSphere Integrated Solutions console.

C. Use the web-dav-deploy-zip-file to deploy the compressed file and use the XMLAccess command to run the script. Use the WebSphereIntegrated Solutions console to add the runtime configuration.

D. EAR files must be deployed using the WebSphere Integrated Solutions console, so she must remove it from the ZIP archive and install itdirectly.

Browse 65 Q&As
Questions 5

Which of the following statements describes the value of the Vendor variable from the following portlet code?

Profile p = (Profile) portletRequest.getAttribute(PortletRequest.CCPP_PROFILE); String vendor = p.getAttribute("Vendor").toString();

A. It contains the name of the vendor of the IBM WebSphere Portal server.

B. It contains the name of the vendor of the client browser or device.

C. It contains the value of the configuration key "vendor" for the Profile configuration service.

D. It contains the value of the "vendor" attribute for an identified or authenticated user or null for an anonymous user.

Browse 65 Q&As
Questions 6

Bill is developing a portlet that uses AJAX to retrieve information from the server. In the serveResource() method first he is setting "AdminName" request attribute and then forwarding control to a JSP for generating markup. Using best practices, how should he print the "AdminName" attribute inside the JSP?

A. <%=resourceRequest.getAttribute("AdminName")%>

B. <%=renderRequest.getAttribute("AdminName")%>

C. ${requestScope.AdminName}

D. ${portalRequest.AdminName}

Browse 65 Q&As
Questions 7

Given the following code in the portlet.xml file, what line of code returns the value of the "test" init- param. MyPortlet test test_init_parameter

A. renderRequest.getInitParameter("test");

B. renderRequest.getPortalContext().getInitParameter("test");

C. portletConfig.getInitParameter("test");

D. renderResponse.getInitParameter("test");

Browse 65 Q&As
Questions 8

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.

Browse 65 Q&As
Questions 9

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

Browse 65 Q&As
Questions 10

Which one of the following statements is valid regarding credential objects?

A. Credential objects are serializable.

B. To create a slot for storing active credentials, set the active parameter of the CredentialVaultService.createSlot method to true.

C. Passive credential objects hide the credential's secret from the portlet.

D. Portlets that use active credential objects need to extract the secret from the credential to authenticate with the backend.

Browse 65 Q&As
Questions 11

Evan needs to share action URL parameters used in a portlet with another portlet. In the binding section of the WSDL files used for specifying a portlet's participation with the property broker, an action URL parameter can be bound to several scopes. Which one of the following options best describes the scopes that Evan can use to share the action URL parameters using the property broker?

A. Page attribute, Request attribute, Request parameter, Session attribute

B. Request attribute, Request parameter, or Session attribute

C. Request parameter or Session attribute

D. Session attribute only

Browse 65 Q&As
Questions 12

Sanjeev wants to add a Help mode to his iWidget. At a minimum, what changes will he need to make to his iWidget definition XML so that IBM WebSphere Portal will enable a Help option for it?

A. Add an iw:content element with a mode attribute of 'help' in the iw:widget element.

B. Add 'help' to the supportedModes attribute of the iw:widget element. Add an iw:content element with a mode attribute of 'help' in the iw:widgetelement.

C. Add 'help' to the supportedModes attribute of the iw:widget element. Add an iw:content element with a mode attribute of 'help' in the iw:widgetelement. Add an 'onhelp' Javascript method.

D. No change needs to be made. All iWidgets in WebSphere Portal already have a Help mode.

Browse 65 Q&As
Questions 13

What is the outcome if a non-deferred module has a requirement on a deferred module?

A. The server-side combiner framework promotes the deferred module to be non-deferred.

B. The server-side combiner framework will ignore both the non-deferred and the deferred module.

C. The server-side combiner framework demotes the non-deferred module to be deferred.

D. The server-side combiner framework will ignore the dependency on the deferred module.

Browse 65 Q&As
Questions 14

Carl is trying to create a theme based on a modularized IBM WebSphere Portal theme. He is ready for deployment, but is unsure of the structure he needs to use to accomplish this. What would be the proper deployment structure for this theme?

A. Create an ZIP file that contains one WAR file containing the dynamic content of the theme and one JAR file containing a .content filereferencing the static content.

B. Create a custom version of the dynamic content from the modularized theme as a new EAR file and a custom version of the static content bycreating a folder in the file store for it.

C. Create a WAR file that contains an ZIP file containing an EAR file that includes both static and dynamic content.

D. Create a folder for the theme in the file store, and create a WAR file containing an exact copy of this theme. All associations between static anddynamic content will be made once both are associated by sharing similar context roots.

Browse 65 Q&As
Questions 15

Cheng is a registered user of his company's intranet portal. He accesses the portal by 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 unauthenticated

Browse 65 Q&As
Questions 16

Emery is trying to make it so users from a specific geographic location do not have access to a specific metrics application hosted on their IBM WebSphere Portal server. Which of the following options is provided within WebSphere Portal that Emery can use to this purpose?

A. Emery can use the call to ensure the portlet is hidden for thegeography to block.

B. Emery can use Personalization Rules to hide the portlet, leveraging information in the user repository regarding the user's geographiclocation.

C. Emery's users must register as being from a specific geography and Emery can develop workflow methods leveraging thePortalUserIdentityBean (or PUIB) object to ensure the portlet does not generate markup for the user in this geography.

D. None of the above. Emery is going to need to create a page and assign metadata parameters to hide the specific portlet from users fromgeographies that are not allowed to see it.

Browse 65 Q&As
Questions 17

Which option best describes how JSR 286-compliant portlets and widgets interact with each other?

A. Portlets and widgets cannot interact with each other.

B. Widgets and portlets can interact by using shared render parameters and events.

C. Widgets and portlets can interact by using shared render parameters.

D. Widgets and portlets can interact by using events.

Browse 65 Q&As
Questions 18

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 tags.

C. A developer can define up to two JavaScript locales per module by using separate tags.

D. The contributions folder is the default folder for theme-specific JSON configurations within a given theme.

Browse 65 Q&As
Exam Code: C2040-911
Exam Name: IBM WebSphere Portal 8.0 Solution Development
Last Update: Mar 16, 2025
Questions: 65 Q&As

PDF

$49.99

VCE

$55.99

PDF + VCE

$65.99