Which statement is true about the Application Layout control?
A. The Application Layout control provides a consistent interface when added directly to each XPage in an application.
B. To render properly, the Application Layout control must implement one of the oneuiv2.1 themes or a theme that extends a oneuiv2.1 theme.
C. The Application Layout control includes a total of three facet areas for adding content (left, center and right columns) and three bar areas foricons, titles, links and drop down menus.
D. When the Application Layout control is enabled for an application each XPage will include a left, center and right column area with the samedimensions to provide a consistent user interface across the application.
Charles has created an agent which uses the Send method of the NotesDocument class. He has added a button to the document and it should be included when the message is sent. Which code snippet below would correctly send the message and include the button?
A. Dim doc as NotesDocument'...set value of doc...Call doc.Save(True, False)Call doc.Send(False, True)
B. Dim doc as NotesDocument'...set value of doc...Call doc.Save(False, False)Call doc.Send(True)
C. Dim doc as NotesDocument'...set value of doc...Call doc.Save(False)Call doc.Send(SendTo, True)
D. Dim doc as NotesDocument'...set value of doc...Call doc.Save(True)Call doc.Send("SendTo", True)
Peter is writing a Java agent for his application that will need to read data from a text file on the server. How can Peter accomplish this task?
A. Use the Session class createFile method and use the File class methods to get the data from the file.
B. Use the Session class Open method and use the standard Java IO methods to get the data from the file.
C. Use the Session class createStream method and use the Stream class methods to get the data from the file.
D. Use the Session class getDatabse method, supply the name of the file instead of a database name, and use the Database class methods toread the file.
Jenna is working on an XPage with multiple data sources which are document1, document2, view2, and view1. The XPage needs a new custom control that needs access to data source document2 from the XPage. After opening the custom control in IBM Domino Designer, how should Jenna pass the data source object handle "document2" from the XPage to the custom control?
A. In the Resources tab section in the Properties tab, choose "Create a Data source" and select the form that document2 is using in the XPage.
B. On the Property Definition tab, create a new property definition and for the Type, select "string". In the XPage, select the custom control, thengo to the Custom Properties section and type in "document2.View;".
C. On the Property Definition tab, create a new property definition and for the Type, select "dataInterface" from the complex types. In the XPage,select the custom control, then go to the Custom Properties
section, click the Computed Property Icon and type in "return document2;".
D. On the Property Definition tab, create a new property definition and for the Type, select "Domino Document" from the complex types. In theXPage, select the custom control, then go to the Custom Properties section, click the the Computed Property Icon and type in"getComponent (document2').getValue();".
Which is true with regards to XPages Event Handlers?
A. Event Handlers must be attached to an XPage control event.
B. Event Handlers can be used to execute client-side and server-side JavaScript in the same event.
C. When an Event Handler event is complete, client-side JavaScript can be inserted through the onCompleted property.
D. It is not possible to use client-side JavaScript to specifically call server-side JavaScript code without using a partial refresh.
Which control can a Tool Bar Button control be added into within a mobile application?
A. Toolbar
B. Tab Bar
C. Rounded List
D. Page Heading
Into which property of the Data View control should Mary define the leftmost column with a link to open the selected document when clicked?
A. linkColumn
B. docLinkColumn
C. summaryColumn
D. categoryColumn
Jason is designing a mobile application with three mobile pages. Which control should Jason add to his XPage to be the overall container for all of the mobile pages in his application?
A.
B.
C.
D.
Charles wants to be able to add a collapsible area to his XPage. Which control would allow him to do that?
A. Panel
B. Repeat
C. Section
D. Tabbed Panel
What two items are true regarding managed beans? (Choose two.)
A. Managed beans are a JSF framework feature.
B. Managed beans are accessible by IBM LotusScript.
C. Managed beans are a feature based on XPages and not JSF
D. Managed beans are accessible within Server Side JavaScript code
E. Managed beans are a Java technology and are not accessible within server-side JavaScript code.