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

FileMaker FM0-302 FileMaker8 Developer Essentials Exam Exam Practice Test

Page: 1 / 12
Total 120 questions

FileMaker8 Developer Essentials Exam Questions and Answers

Question 1

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.)

Question # 1

Options:

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.

Question 2

A layout showing records from a People table has the Save record changes automatically checkbox disabled in the Layout Setup dialog. Which two actions cause FileMaker Pro 8 to display a dialog asking whether or not you want to save changes to the current record? (Choose two.)

Options:

A.

importing records into the People table

B.

editing a field value on the layout and attempting to commit the record

C.

running a script that navigates to that layout, changes a field value, and performs a Commit Records/Requests[No Dialog] script step

D.

running a script that navigates to that layout, changes a field value, and performs a Commit Records/Requests[Skip data entry validation] script step

Question 3

The last script step in Script A in File A calls Script B in File B. Which three script steps can be used in Script B to make File B's front most window active without the need to use the Select Window [ ] script step? (Choose three.)

Options:

A.

Adjust Window [ ]

B.

Enter Browse Mode [ ]

C.

Enter Preview Mode [ ]

D.

Enter Find Mode [Pause]

E.

Move / Resize Window [ ]

Question 4

A field in FileMaker Pro 8 has been set to validate Always. Which two actions will trigger validation on that field? (Choose two.)

Options:

A.

importing data into that field

B.

making a change to the field's data type

C.

editing data in the field using Instant Web Publishing

D.

clicking into the field, then immediately exiting the field

Question 5

Which two statements are true regarding the behavior of windows in FileMaker Pro 8 when using Custom Menus? (Choose two.)

Options:

A.

Different windows in the same file can have a different menu set.

B.

The ability to open a new window from the menu may not be removed by using a Custom Menu set.

C.

A new window created using File Menu: Window > New Window will inherit the current active Menu set.

D.

Closing all file windows without quitting the FileMaker Pro 8 application will keep the last active Custom Menu set until the application is quit.

Question 6

Which three occur if the hard disk runs out of space during a "live" backup of files hosted on FileMaker Server 8? (Choose three.)

Options:

A.

The backup stops.

B.

The backup file is deleted.

C.

The backup file is retained.

D.

The backup continues on another disk if one is available.

E.

FileMaker Server 8 logs an error in the Application Log (Windows) or Event.log (Mac OS).

Question 7

Click the Exhibit button.

Given the relationship shown in the exhibit, which statement is true?

Question # 7

Options:

A.

All four match fields must be indexed for the relationship to resolve properly.

B.

When deleting a person record in the Person table, all tasks with that Person ID will be deleted.

C.

The exhibit is invalid because it is not possible to create related records through a multi-predicate relationship.

D.

When creating a related Task record via the relationship, both the Person ID and the Category ID in the task record will be populated.

Question 8

Click the Exhibit button.

You have a FileMaker Pro 8 layout based on the table occurrence Teachers. You have a portal showing records from the table occurrence Students.

What happens if you place the field Classes::Class Name into the portal?

Question # 8

Options:

A.

The field displays .

B.

The field displays the class name of the first related student.

C.

The field displays the teacher's first class name in every portal row.

D.

The field displays an enrolled student's name in each row of the portal only if the student name is calculated in the Enrollment table.

Question 9

Given a new privilege set in a FileMaker Pro 8 database, which two extended privileges can be enabled to enable an external application to connect to the database? (Choose two.)

Options:

A.

Access via ActiveX

B.

Access via ODBC/JDBC

C.

Access via FileMaker Mobile

D.

Access via External Application

Question 10

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 )?

Options:

A.

?

B.

0

C.

-3, -2, -1

D.

-3, -2, -1, 0

Question 11

In FileMaker Pro 8 which two statements about portals are true? (Choose two.)

Options:

A.

Container fields can be placed in portals.

B.

The initial row setting of a portal can be set by a script.

C.

A sort order applied to a portal overrides any sort order set up for the relationship.

D.

If there are multiple portals on a layout, the Go to Portal Row [First] script step will activate the portal closest to the top, left corner of the layout.

Question 12

Click the Exhibit button.

You want to build a FileMaker Pro 8 database that models a business organizational chart. One person may manage zero or more people. One person may be managed by at most one other person.

You want to build the system in such a way that a single layout about a person can display the name of the current person's manager as well as a portal of the people managed by the current person (as shown in the exhibit).

Assume that there are no lookup fields or calculation fields defined in any table, and there are no scripts in the file.

What is the minimum number of table occurrences you must use to construct the layout?

Question # 12

Options:

A.

one

B.

two

C.

three

D.

four

Question 13

What two statements are true for FileMaker Pro 8 Advanced? (Choose two.)

Options:

A.

The Data Viewer can only be used while debugging scripts.

B.

The Script Debugger allows you to view any currently running script.

C.

Using the Active Scripts pane in the Script Debugger, you can temporarily disable sub-scripts.

D.

Using the Set Next Script Step function in the Script Debugger, you can alter the order in which sub-scripts execute.

E.

Using the Halt Script function in the Script Debugger, you can stop the execution of a sub-script and return to the script that called it.

Question 14

Consider two files, Alpha and Beta, where tables from Beta are included in the Relationships Graph of Alpha as external table occurrences. What are two ways to rename Beta while preserving all functionality in Alpha? (Choose two.)

Options:

A.

change the file path of the Beta File Reference in Alpha

B.

rename Beta using the File > Save a Copy As... option

C.

rename any table occurrences that are based on Beta to match the new file name

D.

use Tools > Developer Utilities... in FileMaker Pro 8 Advanced to rename Beta

Question 15

Given the formula:

1 and (1 & 1)

What is the numeric result?

Options:

A.

0

B.

1

C.

2

D.

12

Question 16

Click the Exhibit button.

Given the FileMaker Pro 8 relationship graph shown in the exhibit, a layout assigned to the Teachers table occurrence has fields Name and Address, and a portal showing the Students table occurrence.

If a developer assigns the layout to the Advisors table occurrence, what happens to the data displayed?

Question # 16

Options:

A.

Name and Address do not display data and the portal shows all students of the current advisor.

B.

Name and Address show the current advisor and the portal shows all students of the current advisor.

C.

Name and Address show the first teacher of the first class of the first student of the current advisor and the portal shows all students of that teacher.

D.

Name and Address show the first teacher of the first class of the first student of the current advisor and the portal shows all students of the current advisor.

Question 17

Which three script steps in a FileMaker Pro 8 database may fail if another user is editing the record on which the script is operating? (Choose three.)

Options:

A.

Copy [ ]

B.

Paste [ ]

C.

Set Field [ ]

D.

Set Selection [ ]

E.

Relookup Field Content [ ]

Question 18

Click the Exhibit button.

What changes need to be made to the database to create a portal on a layout tied to the Customer table occurrence that displays all products (without duplication) that a customer has ever ordered?

Question # 18

Options:

A.

No changes need to be made.

B.

Create a calculation field in the OrderLineItem table that references the related product name.

C.

Create a new relationship between the Customer table occurrence and the Product table occurrence.

D.

Create a relationship between the Customer table occurrence and a second table occurrence of the Product table.

Page: 1 / 12
Total 120 questions