Summer Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: exc65

Which two statements are true regarding the use of plug-ins? (Choose two.)

A.

Plug-ins provide additional script step capabilities.

B.

Plug-ins provide additional calculation capabilities.

C.

The Auto Update feature is implemented with a plug-in.

D.

Plug-ins can only be used on FileMaker Pro 8 and FileMaker Pro 8 Advanced.

Given a custom function created in FileMaker Pro 8 Advanced called "MyFunction" with a single parameter "Number" defined as:

If (

Number = 0 ;

Number ;

Number & ", " & MyFunction ( Number - 1 )

)

What is the result of MyFunction ( -3 )?

A.

?

B.

0

C.

-3, -2, -1

D.

-3, -2, -1, 0

Given the following formula:

Let ( myCalc = "6 * 3" ; Evaluate (myCalc))

Which value will be returned?

A.

0

B.

1

C.

18

D.

6 * 3

E.

myCalc

Click the Exhibit button.

Your database has four tables: Customer, Invoice, Line Item, and Product. The relationships are displayed in the Relationships Graph exhibit.

Your users want to select a group of customers and then view all unique products purchased by those customers.

Which two techniques successfully accomplish this without changing the Relationships Graph? (Choose two.)

A.

You build a portal on a Customer layout that shows related Product records.

B.

You write a script that uses a Go To Related Records [ ] script step to navigate from a Customer layout to the desired set of Product records.

C.

You create a button on a special Customer layout that performs a Copy All Records/Requests[ ] script step and allows users to paste the result into a Find request.

D.

You loop through the found set of Customer records, assembling a set of ID values into a global variable. You then loop again on a Products layout, creating single find requests for each ID value.

What are two reasons you might use the Let function within a calculation formula in a FileMaker Pro 8 database field? (Choose two.)

A.

to declare a variable that will be used within the formula

B.

to set a variable that can be used elsewhere within a script

C.

to modify data in a text field referenced elsewhere in the formula

D.

to create a custom function that can be used in other calculation formulas

A Past Due script finds all customer records with past due invoices. Which script step needs to precede the Perform Find [ ] script step to ensure the script works properly?

A.

Go to Layout [ ]

B.

Select Window [ ]

C.

Set Selection [ ]

D.

Enter Browse Mode [ ]

A database has two tables, Planet and Moon. Moons are related to a single planet and their relationship is set to delete related records in the Moon table when a Planet record is deleted.

Which two things happen when the Planet table is deleted from the Tables tab of the Define Database dialog? (Choose two.)

A.

All data in the Planet table are deleted.

B.

All records in the Moon table are deleted.

C.

All records in the Moon table remain unaffected.

D.

All records in the Moon table are deleted if the option to "Also remove occurrences of these tables in the graph" was selected when deleting the Planet table.

How would you configure a database so that users will not be prompted for a username and password when accessing the database via Instant Web Publishing?

A.

Leave the file's account settings in the default state.

B.

Define a [Web] privilege set and a [Web]account with no password.

C.

Enable the [Guest] account, and make it the only account with the [fmiwp] extended privilege enabled.

D.

Set the Instant Web Publishing access to the file in the Instant Web Publishing dialog to All Users.

The return delimited data in the Contact field of a FileMaker Pro 8 database are:

John Smith

Mary Jones

Julie Hyde

Which three formulas can be used to extract the string "Mary Jones" (without quotes) from Contact? (Choose three.)

A.

GetValue (Contact ; 2)

B.

Middle (Contact ; 12 ; 10)

C.

GetWords (Contact ; 3 ; 2)

D.

MiddleWords (Contact ; 3 ; 2)

E.

MiddleValues (Contact ; 2 ; 2)

Given the following formula:

Date (

Month ( Get ( CurrentDate ) ) + 1;

1;

Year ( Get ( CurrentDate ) )

) - 1

What is the result?

A.

the last day of the next month

B.

the first day of the next month

C.

the last day of the current month

D.

the first day of the current month