IBM Lotus Notes Domino 8.5 Application Development Update - C2040-951 Exam Practice Test

Ashley is writing a server-side script to process the request parameters that are passed in her Registration XPage. What global object should she use to access the parameters that she's interested in?
Correct Answer: C
Priscilla has used the Set Value simple action to define the value of the Author field on her XPage. Which of the following is a valid binding in the Expression Language?
Correct Answer: B
Joshua would like to have a cookie set on his Movie Rental XPage before it loads on the browser. Which view would Joshua use to add this functionality?
Correct Answer: A
Shawn has a list of options that he would like to add as checkboxes to an XPage. How can he add a Checkbox group control to his current XPage?
Correct Answer: B
Nick would like to use JavaScript to get the name of the current XPage. Which one of the following global objects and its corresponding method can he use to accomplish this?
Correct Answer: B
Henry is using a requestScope scoped variable (rSa) in an XPage called XPageA to make it available in XPageB. John is testing XPageB, but rSa is still empty. Which of the following is causing this behavior?
Correct Answer: B
Ragan is working in Designer and has inadvertently closed the Problems view. He needs to see this view to resolve errors in his XPage. How can he get the view to display?
Correct Answer: D
Daniel has an XPage design element that shows a view. The view has hundreds of entries, ten of which display at one time. What core control can Daniel add to the XPage to allow the user to navigate through the view?
Correct Answer: B
Abigail has added a computed field control to her Person XPage. For that field, she chose to use JavaScript? For binding data to that field How will she add code to that control to get the data to display?
Correct Answer: A
Kyle has been asked to add a agent in his Customer Management application that will create a contact file for the current user in the vCard format. The information for the vCard is contained in the Domino directory. Kyle writes the following agent: Dim session As New NotesSession Dim dbThis As NotesDatabase Dim dbNAB As NotesDatabase Dim docThis As NotesDocument Dim docNAB As NotesDocument Dim dcThis As NotesDocumentCollection Dim viewNAB As NotesView Set dbThis = session.CurrentDatabase Set dbNAB = session.GetDatabase("SVR01/ACME", "names.nsf", False) Set viewNAB = dbNAB.GetView("($Users)") Set dcThis = dbThis.UnprocessedDocuments() Set docNAB = viewNAB.GetDocumentByKey(session.CommonUserName, True) Set docThis = dcThis.GetFirstDocument Do While Not (docThis Is Nothing) *** Missing Line Of Code *** Call docThis.Save(True, False) Set docThis = dcThis.GetNextDocument(docThis) Loop What missing line of code accomplishes this task?
Correct Answer: A
0
0
0
0