Deck 8: Creating an Integrated Database Application

Full screen (f)
exit full mode
Question
A user must dismiss the splash screen using a command button before the main window is displayed.
Use Space or
up arrow
down arrow
to flip the card.
Question
The image on the splash screen is usually a boilerplate image.
Question
An integrated database application consists only of forms built in Forms Builder.
Question
All application components should also be accessible through pull-down menus for users who prefer to use the keyboard rather than the mouse pointer.
Question
The project folder can contain graphics as well as forms and reports files.
Question
When you paste a command button,Forms Builder places it to the right of the copied button.
Question
System testing is usually done before unit testing.
Question
A template form can include program units.
Question
Many database applications display a splash screen when the application is started.
Question
When a form timer expires the WHEN-TIMER-EXPIRES trigger is fired.
Question
Reports that are available on the Oracle Application Server may be referenced by module name.
Question
The first canvas to open in a form is the one who's data block is listed first in the Object Navigator.
Question
The NEW_FORM built-in procedure opens a child form,with the option of not immediately changing the application focus to the child form.
Question
A report can be opened in a database form by importing the report module into Forms Builder.
Question
In a Forms Builder application the Help menu is placed at the far right.
Question
You can use different pull-down menus to restrict users from accessing specific forms.
Question
A global variable is referenced like a private variable - with only the variable name required.
Question
Part of the deployment process is distributing an application to the users.
Question
A large database application usually contains many forms stored in one .fmb file.
Question
When a form is referenced by another form in an application,only the form name and folder are needed,not the drive letter.
Question
You use the SET_REPORT_OBJECT_PROPERTY built-in to specify the destination
filename as a file named Location.htm in the project folder.
Question
A child menu cannot have a submenu.
Question
A menu function is used to perform an action when a user selects the menu item.
Question
Why can't the image on a splash screen be a boilerplate object?

A)It is too slow
B)Forms Services will not display a canvas with only boilerplate objects
C)The image name must be located dynamically
D)The image must be loaded from the database
Question
A menu access key is the first letter of the menu,by default.
Question
To enable a child form to display its own menu module,rather than its parent's menu module you must set the Child Menu property.
Question
The ____ form trigger is used to display the splash screen image and sets a timer.

A)PRE-FORM
B)ON-LOAD
C)POST-FORM
D)WHEN-TIMER-EXPIRES
Question
One of the menu item types is Group.
Question
Use the ____ procedure to load an image into an image item.

A)READ_IMAGE_FILE
B)LOAD_IMAGE
C)READ_IMAGE
D)LOAD_IMAGE_FILE
Question
Use the ____ data type for a form timer.

A)DATE
B)DATETIME
C)TIMER
D)INTERVAL
Question
The ____ is a name for the main form of a database application with command buttons to launch forms.

A)button bar
B)switchboard
C)tools
D)splash screen
Question
The first phase of the lifecycle of a database application is called ____.

A)Design
B)Module Development
C)Module Integration
D)Testing
Question
A pop-up menu object can only be assigned to a form canvas.
Question
In a database application,all functionality should be available through ____.

A)command buttons
B)pull-down menus
C)pop-up menus
D)keyboard shortcuts
Question
The FIND_MENU_ITEM built-in procedure returns the object ID for the specified menu item.
Question
The ____ form object controls the length of time that a splash screen appears.

A)counter
B)timer
C)countdown
D)ticker
Question
What value is used for the timer iteration specification to ensure that the timer stays expired?

A)REPEAT
B)NO REPEAT
C)EXPIRE
D)DONE
Question
What is the name of the first screen displayed in a database application that introduces the application?

A)front page
B)welcome page
C)home page
D)splash screen
Question
An integrated database application should use the Forms Services menu.
Question
A menu item may be hidden.
Question
When the user clicks a child menu item that has no lower levels,a ____ runs.

A)menu function
B)menu code trigger
C)linked function
D)menu procedure
Question
If a form file is located in the folder -Forms on the c: drive and is named form1,what would be the correct way to refer to the file using the path specification approach?

A)c:-Forms-form1.fmb
B)c:-Forms-form1
C)-Forms-form1.fmb
D)-Forms-form1
Question
A menu can be detached in the Menu Editor using the ____.

A)menu clicker
B)menu handle
C)menu toolbar
D)menu button
Question
____ is the default value for the commit mode parameter of the EXIT_FORM procedure.

A)ASK_COMMIT
B)DONT_COMMIT
C)NO_COMMIT
D)DO_COMMIT
Question
What is the data type of a global variable?

A)any data type
B)number
C)date
D)character
Question
After a window is shown using the SHOW_WINDOW command,____.

A)it appears immediately
B)it appears behind the splash screen
C)the GO_ITEM command must be used to display the window
D)the splash screen is automatically closed
Question
The maximum length of a global variable is ____ characters.

A)10
B)40
C)255
D)1000
Question
To replace the default Forms Services pull-down menu choices with custom pull-down menu choices,you create a ____.

A)menu module
B)custom menu
C)user menu
D)form menu
Question
Where is a global path variable typically declared?

A)WHEN-TIMER-EXPIRES trigger
B)PRE-FORM trigger
C)ON-LOAD trigger
D)WHEN-BUTTON-PRESSED trigger
Question
The ____ System Registry key holds the forms default folder.

A)FORMS90_PATH
B)ORA_FORM_FOLDER
C)DEFAULT_FB_FOLDER
D)FOR9I_DEFAULT
Question
When using the CALL_FORM procedure,the ____value specifies that the new window and the parent window should display side-by-side.

A)NO_HIDE
B)KEEP_ALIVE
C)BOTH
D)HIDE
Question
Use the ____ procedure to open a child form and exit the parent form.

A)LAUNCH_FORM
B)OPEN_FORM
C)NEW_FORM
D)CALL_FORM
Question
How do you specify a common font and font size for text items?

A)use a form template
B)use a visual attribute group
C)use a text item template
D)use a data block
Question
The ____ procedure opens a child form and immediately switches the application focus to the new form.

A)NEW_FORM
B)CALL_FORM
C)OPEN_FORM
D)LAUNCH_FORM
Question
A ____ can be referenced in any form file once it has been declared.

A)private variable
B)public variable
C)form variable
D)global variable
Question
In what location should reports be stored in order to refer to them using module names?

A)c: drive
B)default forms folder
C)default reports folder
D)Reports Builder installation director
Question
How do you start the local report server?

A)using Control Panel Services window
B)using Start menu
C)using Start Local Report Server menu option in Forms Builder
D)using Start Local Report Server toolbar button in Forms Builder
Question
Forms Builder menus are made up of ____.

A)links
B)menu objects
C)menu items
D)menu components
Question
How is a global variable referenced?

A):GLOBAL.variable_name
B)GLOBAL.variable_name
C)GLOBAL:variable_name
D)variable_name:GLOBAL
Question
When opening a new form with the CALL_FORM procedure,the ____ value for query mode specifies that the user will be able to modify data in the new window.

A)NO_QUERY
B)MODIFY_ALLOWED
C)QUERY_ONLY
D)NO_QUERY_ONLY
Question
What built-in is used to modify a menu item property dynamically?

A)SET_PROPERTY
B)SET_MENU_ITEM_PROPERTY
C)REPLACE_MENU_ITEM_PROPERTY
D)SET_MENU_PROPERTY
Question
To assign the pop-up menu to a form object,you open the Property Palette of the object to which you want to attach the menu,and change the object's ____ property value to the name of the associated pop-up menu object.

A)Popup Menu
B)Menu
C)Popup
D)Right-menu
Question
A pop-up menu is associated with a specific ____.

A)application
B)form
C)report
D)pull-down menu
Question
What is the extension for a compiled menu module?

A)mmx
B)mrx
C)mmb
D)xmm
Question
How do you determine the system-assigned names of individual menu items?

A)using the Property Palette
B)it is the same as the file name for the menu
C)using the Object Navigator
D)viewing the name on the top of the menu
Question
A(n)____________________ variable is a variable that references a text string specifying the complete path to the drive and folder where you store all the application files.
Question
____________________ involves packaging the integrated modules in an installable format that you can deliver to customers.
Question
To integrate individual Oracle form and report modules into a single application,you create a form module,called the ____________________,from which users access all of the individual application components.
Question
A(n)____________________ form is a generic form that includes standard form objects,such as graphics,command buttons,and program units that appear on every form in an application.
Question
A(n)____________________ is a form object that defines object properties,such as text item colors,font sizes,and font styles.
Question
Use a ____________________ to control how long the splash image appears and to signal when to hide the splash window.
Question
The main form screen display often has a(n)____________________,which consists of command buttons that enable users to access the most commonly used forms and reports quickly and easily.
Question
If you place the menu module file in the ____ folder,you do not need to include the drive letter or folder path of the menu module file.

A)menu item
B)project
C)default menu
D)default form
Question
What is the access key for a menu with the label E&XIT?

A)E
B)I
C)T
D)X
Question
____________________ are programs or messages that handle undeveloped system features.
Question
What is the default menu Item Type?

A)Separator
B)Plain
C)Check
D)Magic
Question
____________________ involves testing the individual form and report modules to confirm that they work correctly as single applications.
Question
A(n)____________________ item is a block item that displays an image loaded by a trigger while the form is running.
Question
In the CALL_FORM command,____ specifies whether the child form inherits its pull-down menus from the parent form,or displays its own menu module,as specified in the child form's Menu Module property.

A)Child_menu
B)Save_menu
C)Switch_menu
D)Inherit_menu
Question
Every ____ menu item must have a menu code trigger.

A)parent
B)child
C)sub
D)top-level
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/100
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 8: Creating an Integrated Database Application
1
A user must dismiss the splash screen using a command button before the main window is displayed.
False
2
The image on the splash screen is usually a boilerplate image.
False
3
An integrated database application consists only of forms built in Forms Builder.
False
4
All application components should also be accessible through pull-down menus for users who prefer to use the keyboard rather than the mouse pointer.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
5
The project folder can contain graphics as well as forms and reports files.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
6
When you paste a command button,Forms Builder places it to the right of the copied button.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
7
System testing is usually done before unit testing.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
8
A template form can include program units.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
9
Many database applications display a splash screen when the application is started.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
10
When a form timer expires the WHEN-TIMER-EXPIRES trigger is fired.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
11
Reports that are available on the Oracle Application Server may be referenced by module name.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
12
The first canvas to open in a form is the one who's data block is listed first in the Object Navigator.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
13
The NEW_FORM built-in procedure opens a child form,with the option of not immediately changing the application focus to the child form.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
14
A report can be opened in a database form by importing the report module into Forms Builder.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
15
In a Forms Builder application the Help menu is placed at the far right.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
16
You can use different pull-down menus to restrict users from accessing specific forms.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
17
A global variable is referenced like a private variable - with only the variable name required.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
18
Part of the deployment process is distributing an application to the users.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
19
A large database application usually contains many forms stored in one .fmb file.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
20
When a form is referenced by another form in an application,only the form name and folder are needed,not the drive letter.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
21
You use the SET_REPORT_OBJECT_PROPERTY built-in to specify the destination
filename as a file named Location.htm in the project folder.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
22
A child menu cannot have a submenu.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
23
A menu function is used to perform an action when a user selects the menu item.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
24
Why can't the image on a splash screen be a boilerplate object?

A)It is too slow
B)Forms Services will not display a canvas with only boilerplate objects
C)The image name must be located dynamically
D)The image must be loaded from the database
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
25
A menu access key is the first letter of the menu,by default.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
26
To enable a child form to display its own menu module,rather than its parent's menu module you must set the Child Menu property.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
27
The ____ form trigger is used to display the splash screen image and sets a timer.

A)PRE-FORM
B)ON-LOAD
C)POST-FORM
D)WHEN-TIMER-EXPIRES
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
28
One of the menu item types is Group.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
29
Use the ____ procedure to load an image into an image item.

A)READ_IMAGE_FILE
B)LOAD_IMAGE
C)READ_IMAGE
D)LOAD_IMAGE_FILE
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
30
Use the ____ data type for a form timer.

A)DATE
B)DATETIME
C)TIMER
D)INTERVAL
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
31
The ____ is a name for the main form of a database application with command buttons to launch forms.

A)button bar
B)switchboard
C)tools
D)splash screen
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
32
The first phase of the lifecycle of a database application is called ____.

A)Design
B)Module Development
C)Module Integration
D)Testing
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
33
A pop-up menu object can only be assigned to a form canvas.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
34
In a database application,all functionality should be available through ____.

A)command buttons
B)pull-down menus
C)pop-up menus
D)keyboard shortcuts
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
35
The FIND_MENU_ITEM built-in procedure returns the object ID for the specified menu item.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
36
The ____ form object controls the length of time that a splash screen appears.

A)counter
B)timer
C)countdown
D)ticker
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
37
What value is used for the timer iteration specification to ensure that the timer stays expired?

A)REPEAT
B)NO REPEAT
C)EXPIRE
D)DONE
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
38
What is the name of the first screen displayed in a database application that introduces the application?

A)front page
B)welcome page
C)home page
D)splash screen
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
39
An integrated database application should use the Forms Services menu.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
40
A menu item may be hidden.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
41
When the user clicks a child menu item that has no lower levels,a ____ runs.

A)menu function
B)menu code trigger
C)linked function
D)menu procedure
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
42
If a form file is located in the folder -Forms on the c: drive and is named form1,what would be the correct way to refer to the file using the path specification approach?

A)c:-Forms-form1.fmb
B)c:-Forms-form1
C)-Forms-form1.fmb
D)-Forms-form1
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
43
A menu can be detached in the Menu Editor using the ____.

A)menu clicker
B)menu handle
C)menu toolbar
D)menu button
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
44
____ is the default value for the commit mode parameter of the EXIT_FORM procedure.

A)ASK_COMMIT
B)DONT_COMMIT
C)NO_COMMIT
D)DO_COMMIT
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
45
What is the data type of a global variable?

A)any data type
B)number
C)date
D)character
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
46
After a window is shown using the SHOW_WINDOW command,____.

A)it appears immediately
B)it appears behind the splash screen
C)the GO_ITEM command must be used to display the window
D)the splash screen is automatically closed
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
47
The maximum length of a global variable is ____ characters.

A)10
B)40
C)255
D)1000
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
48
To replace the default Forms Services pull-down menu choices with custom pull-down menu choices,you create a ____.

A)menu module
B)custom menu
C)user menu
D)form menu
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
49
Where is a global path variable typically declared?

A)WHEN-TIMER-EXPIRES trigger
B)PRE-FORM trigger
C)ON-LOAD trigger
D)WHEN-BUTTON-PRESSED trigger
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
50
The ____ System Registry key holds the forms default folder.

A)FORMS90_PATH
B)ORA_FORM_FOLDER
C)DEFAULT_FB_FOLDER
D)FOR9I_DEFAULT
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
51
When using the CALL_FORM procedure,the ____value specifies that the new window and the parent window should display side-by-side.

A)NO_HIDE
B)KEEP_ALIVE
C)BOTH
D)HIDE
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
52
Use the ____ procedure to open a child form and exit the parent form.

A)LAUNCH_FORM
B)OPEN_FORM
C)NEW_FORM
D)CALL_FORM
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
53
How do you specify a common font and font size for text items?

A)use a form template
B)use a visual attribute group
C)use a text item template
D)use a data block
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
54
The ____ procedure opens a child form and immediately switches the application focus to the new form.

A)NEW_FORM
B)CALL_FORM
C)OPEN_FORM
D)LAUNCH_FORM
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
55
A ____ can be referenced in any form file once it has been declared.

A)private variable
B)public variable
C)form variable
D)global variable
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
56
In what location should reports be stored in order to refer to them using module names?

A)c: drive
B)default forms folder
C)default reports folder
D)Reports Builder installation director
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
57
How do you start the local report server?

A)using Control Panel Services window
B)using Start menu
C)using Start Local Report Server menu option in Forms Builder
D)using Start Local Report Server toolbar button in Forms Builder
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
58
Forms Builder menus are made up of ____.

A)links
B)menu objects
C)menu items
D)menu components
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
59
How is a global variable referenced?

A):GLOBAL.variable_name
B)GLOBAL.variable_name
C)GLOBAL:variable_name
D)variable_name:GLOBAL
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
60
When opening a new form with the CALL_FORM procedure,the ____ value for query mode specifies that the user will be able to modify data in the new window.

A)NO_QUERY
B)MODIFY_ALLOWED
C)QUERY_ONLY
D)NO_QUERY_ONLY
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
61
What built-in is used to modify a menu item property dynamically?

A)SET_PROPERTY
B)SET_MENU_ITEM_PROPERTY
C)REPLACE_MENU_ITEM_PROPERTY
D)SET_MENU_PROPERTY
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
62
To assign the pop-up menu to a form object,you open the Property Palette of the object to which you want to attach the menu,and change the object's ____ property value to the name of the associated pop-up menu object.

A)Popup Menu
B)Menu
C)Popup
D)Right-menu
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
63
A pop-up menu is associated with a specific ____.

A)application
B)form
C)report
D)pull-down menu
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
64
What is the extension for a compiled menu module?

A)mmx
B)mrx
C)mmb
D)xmm
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
65
How do you determine the system-assigned names of individual menu items?

A)using the Property Palette
B)it is the same as the file name for the menu
C)using the Object Navigator
D)viewing the name on the top of the menu
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
66
A(n)____________________ variable is a variable that references a text string specifying the complete path to the drive and folder where you store all the application files.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
67
____________________ involves packaging the integrated modules in an installable format that you can deliver to customers.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
68
To integrate individual Oracle form and report modules into a single application,you create a form module,called the ____________________,from which users access all of the individual application components.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
69
A(n)____________________ form is a generic form that includes standard form objects,such as graphics,command buttons,and program units that appear on every form in an application.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
70
A(n)____________________ is a form object that defines object properties,such as text item colors,font sizes,and font styles.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
71
Use a ____________________ to control how long the splash image appears and to signal when to hide the splash window.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
72
The main form screen display often has a(n)____________________,which consists of command buttons that enable users to access the most commonly used forms and reports quickly and easily.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
73
If you place the menu module file in the ____ folder,you do not need to include the drive letter or folder path of the menu module file.

A)menu item
B)project
C)default menu
D)default form
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
74
What is the access key for a menu with the label E&XIT?

A)E
B)I
C)T
D)X
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
75
____________________ are programs or messages that handle undeveloped system features.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
76
What is the default menu Item Type?

A)Separator
B)Plain
C)Check
D)Magic
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
77
____________________ involves testing the individual form and report modules to confirm that they work correctly as single applications.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
78
A(n)____________________ item is a block item that displays an image loaded by a trigger while the form is running.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
79
In the CALL_FORM command,____ specifies whether the child form inherits its pull-down menus from the parent form,or displays its own menu module,as specified in the child form's Menu Module property.

A)Child_menu
B)Save_menu
C)Switch_menu
D)Inherit_menu
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
80
Every ____ menu item must have a menu code trigger.

A)parent
B)child
C)sub
D)top-level
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 100 flashcards in this deck.