Maria wants to populate a list with the values "Alpha", "Beta", and "Gamma". What syntax should she use in the formula?
A. "Alpha", "Beta", "Gamma"
B. "Alpha"; "Beta"; "Gamma"
C. "Alpha": "Beta": "Gamma"
D. "Alpha" and "Beta" and "Gamma"
Danielle is updating the "companyName" field on all documents in a view. The field may include varying text, but the field always includes the text "Blue Corporation". For example, one of the documents has "Blue Corporation, a wholly-owned subsidiary of GigantaCorp" as the contents of the companyName field.
What formula can Danielle include in her agent to change the "Blue Corporation" text in each companyName field to now be "Green Enterprises".
A. FIELD companyName := @Set(@Middle(companyName; "Blue Corporation"); "Green Enterprises")
B. FIELD companyName := @SetString(companyName; "Blue Corporation"; "Green Enterprises")
C. FIELD companyName := @Replace(companyName; "Blue Corporation"; "Green Enterprises")
D. FIELD companyName := @ReplaceSubstring(companyName; "Blue Corporation"; "Green Enterprises");
Minh supports the Change Control database. He has been asked if he can change the "by Month" Calendar view so that the days that are outside of the selected month are displayed with a light gray background and dark gray text.
What can Minh do to address this request?
A. Create a hidden column immediately before the StartDate column in the view. Select the "Use value as color" option. Code a formula to evaluate to one set of RGB values for Background and Text if the date is in the current month, and a different set of RGB values for dates outside the current month.
B. Modify the "Date Area" option on the View properties Styles tab. Select a light gray background and set the Text color to dark gray. Modify the colors for background and text in the Current option area to differentiate the gray scheme.
C. Modify the "Monthly" option on the View properties Styles tab. Select a light gray color for the "Not current" color, and select a dark gray color for the Text color.
D. This request cannot be met completely, but Minh can set the Body Background color for the entire view on the View properties Styles tab. He can then control the Text colors by creating a hidden column set to "Use value as color", and by coding a column value formula to evaluate to RGB values.
Marcello wants to create a custom startup page for his customer database, using different buttons and values from profile and normal documents.
How can he achieve this?
A. Create an outline with calculated entries, and display this directly through a frameset.
B. Create a page with calculated text and actions, and display this using a frameset. Create a frameset, and display that page with dynamic text.
C. Create a view with custom actions that calculate what actions the user might want to take.
D. Create a form and use action buttons, only calculated for display fields and computed text to display all available options to this specific user. Set the database properties to start with a doclink in the about database document to any document created with this form.
Herman has created a new design for his Video application. He would like to post the design to the server and make it available so other applications can automatically inherit the design changes when the DESIGN server tasks runs.
Which one of the following should Herman to do make the new design available on the development server?
A. Copy the application to the development server, name it "newvideo.ntf", and select "Allow inheritance" in the application Design properties.
B. Copy the application to the development server, name it "newvideo.ntf", and select "Inherit design from master template", and give it a template name in the application Design properties.
C. Copy the application to the development server, name it "newvideo.ntf", and select "Database file is a master template", and give it a template name in the application Design properties.
D. Copy the application to the development server, name it "newvideo.ntf", and select "Update on DESIGN task" in the application Design properties.
Susan has deployed a template, "sales.ntf", for the Sales Tracking application on the test server. Fred wants to create a new Sales Tracking application using Susan's template, and Fred wants his new application to inherit future design changes from the template.
How can Fred do this?
A. Create a replica of the "Sales.ntf" template, but make its file name end in ".nsf" instead.
B. Create a blank application, right-click the new application icon, and choose the "Cope From Template" option. Select the "sales.ntf" file as the template, then design elements will be copied to the new application.
C. Select File>Application>New, choose the test server as the template server, and choose the "sales.ntf" template.
D. Select File>Application>New, choose the test server as the template server, and give the application "sales.ntf" as a file name.
Roberto has been asked to modify the Membership view in the Video Rental application. A green checkmark should appear in the Approved view column for each document where membership has been approved. He set the view column property to "Display values as icons", and now he needs to write a column formula.
What is the column formula he needs to use?
A. @if(Approved = "Yes"; @Icon(82); @Icon(0))
B. @if(Approved = "Yes"; @OpenImageResource("checkmark.gif");''")
C. @If(Approved = "Yes"; 82; 0)
D. @If(Approved = "Yes"; @Column(82); @Column(0))
Olga wants to have one action on the Video form that will give the options to Print, Save, and Exit the document when it is clicked.
In which one of the following ways can she accomplish this?
A. Use action buttons within an Outline control in a hidden frame to present "twisties".
B. Layer the actions in the Action menu.
C. Use Hide/when formulas along with a database profile field setting to display "toolbars" of icons.
D. Create a parent action with programmable subactions.
Management has asked Bob to post an introductory Welcome page when Notes users first open the Video application.
In which one of the following places should Bob put the Welcome message?
A. In the application About Document
B. In the first Page in the application design
C. In a document named $Welcome
D. In the application Using Document
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).