1.
Aaron has created an XPages application that has a couple of XPages to surface the same data to two different application roles in two completely different user interfaces. Each role can manipulate parts of the data, but in both cases, the data must adhere to the same business logic and rules. What would be the best way for Aaron to implement the same business logic in each XPage?
2.
Elizabeth needs to parse the contents of a web page held on a remote server into an applicationScope variable via the server side onclick event of a button using Server Side JavaScript. How would she do this?
3.
Rick creates a Server-Side JavaScript library, and defines a few global variables at the beginning of the library. The JavaScript in his XPage and in the JavaScript library modify those global variables. The server the application runs on is heavily used, and the application settings are set to Keep Pages on Disk for best scalability. When the application executes, what is likely to happen?
4.
John has a JavaScript function in a Client Side JavaScript library which he wrote to parse some JSON data and loop through the resulting objects. If he wanted to perform the same task in Server Side JavaScript what would be the most efficient action?
5.
Liz wants to make the user confirm their action when they try and delete a document from the application using a delete button. The confirmation message needs to display the title of the document in it. What is the best way to compute this message?
6.
Dominic wants to implement the open source CSS framework called Blueprint in his XPages application. He does not want to include any other CSS framework resources which may exist on the Domino server. What is the best way to include all of the required CSS files in the XPages in his application?
7.
Lydia wants to create a JSON string to represent an array with three objects. Each object has two variables, vA and vB, set to different string values of "one", "two", "three", "four", "five", and "six". What is the proper syntax for the JSON string?
8.
Eric has added the Dojo Module "dijit.form.FilteringSelect" to his XPage and set the dojoType on his Combo Box to "dijit.form.FilteringSelect". However, when he previews his XPage he is not seeing the FilteringSelect? What has he done wrong?
9.
Brandon wants to extend Dojo's dijit.Dialog box to add some extra functionality. How would Brandon declare the new Dojo class?
10.
Titus has created a JSON string that he will pass to the browser. What method could he use to convert the string to an object?