Sam wants to display a column only if the current user is associated with the Manager role. Otherwise, the column should be hidden.
Which one of the following will allow him to do this?
A. Use @IsNotMember("[Manager]"; @UserRoles) in the hide-when view column formula.
B. Use @IsNotMember("[Manager]"; @UserRoles) in the hide-when field formula.
C. Use @IsMember("[Manager]"; @UserRoles) in the hide-when view column formula.
D. Use @IsMember("[Manager]"; @UserRoles) in the hide-when field formula.
Greg has created a form with several fields that get their data from an external relational database system based on a key field. DECS is installed.
Which one of the following must he have done to achieve this functionality?
A. Created a data connection resource
B. Manually imported the data from the relational database
C. Created an embedded RDBMS link
D. Created an ODBC connection resource
Bram needs to change a large number of documents in an existing application and add the three fields from the Document NewDoc to each existing document. He has created a document collection of the
documents to be changed. How can he best achieve this?
A. Call Collection.Stampall (NewDoc)
B. Call Collection.Stampall ("location" : "HomeID" : "HelpNr" ; "NY" : "123" : "80012345678" )
C. Call Collection.StampallMulti ("location" : "HomeID" : "HelpNr" ; "NY" : "123" : "80012345678" )
D. Call Collection.StampAll Multi(NewDoc)
Nora is writing an agent to update certain documents. She needs to ensure that the only records processed are records in which the Model field has a value of "Compact".
Which one of the following statements will Nora include in her agent, and where will the line be placed?
A. SELECT Model = "Compact"; Last line in the agent
B. @If (Model = "Compact";@Success;@Failure); First line in the agent
C. SELECT Model = "Compact"; First line in the agent
D. @If (Model = "Compact";@Success;@Failure); Last line in the agent
Richard's form includes a field that causes a document to be mailed when the document is saved. Which of the following is the reserved field name that Richard assigned to the field?
A. SaveOptions
B. ForceMail
C. MailSend
D. MailOptions
In the past, Lloyd has copied an existing application if he needed to create a new application. This time, however, Lloyd wants to create a new application on his own hard drive, and he does not want the application to include any design elements from existing applications.
How can he do this?
A. From the menu bar, select File > Application > New. Leave the Server option set to "Local", and ensure that the Template option is set to "Blank".
B. From the menu bar, select File > Application > New. Leave the Server option set to "Local", and specify "_blank.nsf" for the new application's filename.
C. From the menu bar, select File > Application > New. Leave the Server option set to "Local", and specify "_blank.nsf" for the new application's filename. Ensure that the Template option is set to "-Default-".
D. From the menu bar, select File > Application > New. Specify "_blank.nsf" for the new application's filename.
Maggie wants to display the authenticated user's name on her Web site's welcome page. How can she do this?
A. Write a JavaScript function that gets the name from the session cookie.
B. None of the Above
C. Use the JavaScript document.userName property.
D. Create computed text on the page that computes to the current user's name.
E. Display the name using the USER_NAME CGI field.
Logan has a servlet that he wants to deploy as part of his Lotus Domino-based Web application. What does he need to do to accomplish this task?
A. Deploy the server to a J2EE application server.
B. Enable servlet support for the Lotus Domino server by modifying the Java Servlet Support section of the server document.
C. Create a Web configuration settings document and change the Configuration Type to "Servlet Support".
D. Lotus Domino does not support the use of servlets.
The XYZ Company has offices in many different countries. There is a single Inventory database, replicated to a server in each country. Users connect to the server associated with the country in which they work. Each product document includes a multivalued field named Country, indicating the country or countries in which the product is available.
How can Drew ensure that the server at each country is sent only the data for products available for sale within that country?
A. From the Security tab of the properties on each country's replica database, select "Restricted replication". Select "Restrict by formula". Enter a replication formula of: SELECT @IsMember ("COUNTRY_NAME"; Country).
B. Add a computed Authors field to the Product forms in the database. use a value formula of "Country". Run an agent to refresh all documents.
C. From the Advanced tab of the replication settings for each country's replica database, select "Documents by selection formula", and enter the formula: SELECT @IsMember("COUTRY_NAME"; Country).
Review the formula below, assuming that the Author field contains the following:
Richard Clarke/Meadowlands/ACME @Left(@Name([CN]; Author);" ")
Which one of the following will the formula produce? (Note: The substring portion of the @Left statement
contains a single space.)
A. Richard Clarke
B. Richard
C. Clarke
D. Meadowlands