Which control, used to dynamically switch content, includes support to code the Dynamic Content display using a Simple Action, client-side or server-side
JavaScript?
ASwitch
BDynamic Content
CMulti-image Output
DDynamic View Panel
Which statement is true for the Single Page Application control for use on a mobile XPage?
AThe XML tag for the Single Page Application control is xp:singlePageApp.
CThe Single Page Application control is used only when the mobile XPage includes a single mobile page.
DThere must be only one Single Page Application control as the container for all of the Application Page controls on the mobile XPage.
Which three properties in the Dojo Text Box control are available in the Edit Box control? (Choose three.)
Aalt
Btrim
Clang
Dtype
Eheader
FinputType
Which is a valid named facet area of the Application Layout control?
AfooterFacet
BtitleBarTabs
CmastHeader
DmainContent
Which statement is true regarding the Extension Library Tooltip control?
AA developer is not allowed to place other data components in between the xe:tooltip start and end tags.
BTo use the beforeContentLoad and afterContentLoad properties, a developer must set dynamicContent to true.
CWhen the position property is set to auto, the tooltip calculates where it should display in relation to the element on the page.
DTo use the beforeContentLoad and afterContentLoad properties, a developer does need to set dynamicContent to false.
Tyler has designed a viewMobilePage to display a listing of customer names from the CustomersByName view. During testing Tyler determined that to avoid scrolling he will need to restrict the number of customer names displayed on the viewMobilePage to ten. How can he do this?
AAdd the property and value of rows="10" to the xe:dataView control.
BAdd the property and value of rows="10" to the xp:viewPanel control.
CAdd the property and value of rows="10" to the xp:dominoView control.
DAdd the property and value of rows="10" to the xe:mobileView control.
Michael has designed a mobile application with two mobile pages. For the first mobile page he set the pageName property to "page1" and for the second mobile page he set the pageName property to "page2". What server-side simple action can Michael add on the second page to navigate the mobile application user to the first page when touched?
AOpen Page
BOpen Mobile Page
CMove To Mobile Page
DMove To Application Page
Davis is concerned that the Extension Library REST Service is not secure. Which is a true statement?
AThe Extension Library REST service does not honor IBM Notes Domino Readers fields.
BAccess to an Extension Library REST service cannot be accessed without authentication.
CAn Extension Library REST service control honors all native IBM Notes and Domino security features.
DAn Extension Library REST service can be accessed without authentication regardless of the database's access control list.
Which navigator control only works with data within the same database?
Which statement is true regarding the Extension Library Dialog control?
AThe Dialog is based on dijit.Dialog.
BThe Dialog can be launched by IBM LotusScript
CThe Dialog cannot be launched by client-side JavaScript.
DThe Dialog can be launched by server-side @Formula language.
Mark has designed a mobile application with two mobile pages. For the first mobile page he set the pageName property to "viewMobilePage" and for the second mobile page he set the pageName property to "documentMobilePage". He designed the viewMobilePage to display a listing of customer names from the
CustomersByName view. He designed the documentMobilePage to display the document details for the customer touched on the viewMobilePage. He specified
"customerDoc" as the name for the Domino Document data source and the field with the customer phone number is named "phone". What can Mark do to add a touch control to send an SMS message to the customer currently displayed on the documentMobilePage?
AFor the Edit Box control bound to the phone field add the property and value of type="sms".
BNothing, access to the SMS function of the mobile device is not supported for mobile applications developed using the Mobile controls inDomino Designer.
CAdd a Tool Bar Button control and compute its href property using this server-side JavaScript:return "sms:" + customerDoc.getItemValueString("phone");
DAdd a Rounded List Item control and compute its sms property using this server-side JavaScript:return customerDoc.getItemValueString("phone");
Jason added a Data View control to an XPage and defined as its data source the "CustomersByNameView" in the Customers application. He specified the
CustomerName column as the column to open the selected customer document when clicked. Into which property of the Data View control should Jason add columns to display the values from the City, Contact and Phone columns in the data source?
Acolumns
BaddColumns
CmultiColumns
DextraColumns
Which property can be used to control the look and feel of the In-Place Form control?
AthemeId
BthemeCSS
CnewLookFeel
Denvironment
Which is a valid Form Table control property?
AformId
BtableId
CformTableId
DformDescription
Gabe is using the Calendar classes to create a repeat meeting. How does Gabe use the NotesCalendar class to create a repeating event?
AGabe will need to use the CreateRepeatEntry method of the NotesCalendar class.
BGabe needs to include an RRule item in the iCalendar data he is passing to the CreateEntry call.
CGabe will need to make a call to the CreateEntry method of the NotesCalendar class for each occurrence of the event.
DGabe should populate the Repeat property of the NotesCalendarEntry to true and populate the RepeatInterval property of theNotesCalendarEntry with the
Jessica wants to resize a text field from its default size. What should she enter in the HTML attributes for the field?
AROWS=10 COLS=20
B"ROWS=10 COLS=20"
CSIZE=75 MAXLENGTH=100
D"SIZE=75 MAXLENGTH=100"
Which server notes.ini property will set the maximum Java Heap size used by the HTTP process?
AJavaMaxHeapSize
BRuntime.maxMemory()
CHTTPJVMMaxHeapSize
DJVM command option -Xms
What are three valid input objects for the NotesXMLProcessor class? (Choose three.)
ANotesView
BNotesForm
CNotesStream
DNotesDXLImporter
ENotesDXLExporter
FNotesRichTextItem
Charles needs to create a button with a link that will open an attachment that is in a document in his Domino application. What is the proper syntax to use for the
URL in the button ?
Lynn would like to obtain the current date and time from the server hosting the database where his Formula code is executing. Which line of code could he use to do that?
AmyTime := @Now([SERVERTIME])
BmyTime := @ServerTime([NOW])
CmyTime := @Time([SERVER]:[NOW])
DmyTime := @Server([TIME]:[NOW])
What value does this formula return? FIELD Items := 10; FIELD Values := 5; rate := 0.10; subtotal := Items * Values; subtotal * (1 + rate)
A15.1
B16.5
C50
D55
Akane is trying to decide between using @Command([RefreshWindow]) and @Command(ReloadWindow]) in a view action. What is the significant difference between the two?
A@Command([RefreshWindow]) executes immediately. @Command(ReloadWindow]) executes after other functions in the action havecompleted.
B@Command(ReloadWindow]) executes immediately. @Command([RefreshWindow]) executes after other functions in the action havecompleted.
C@Command([RefreshWindow]) redraws the window contents without including any changes made to the documents.@Command(ReloadWindow]) updates the window contents to include any changes made to the documents.
D@Command(ReloadWindow]) redraws the window contents without including any changes made to the documents.@Command([RefreshWindow]) updates
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?
ADim doc as NotesDocument'...set value of doc...Call doc.Save(True, False)Call doc.Send(False, True)
BDim doc as NotesDocument'...set value of doc...Call doc.Save(False, False)Call doc.Send(True)
CDim doc as NotesDocument'...set value of doc...Call doc.Save(False)Call doc.Send(SendTo, True)
DDim doc as NotesDocument'...set value of doc...Call doc.Save(True)Call doc.Send("SendTo", True)