Match the following terms to their meanings:

I. Modal
II. Macro
III. Pop-up
IV. Caption
V. Dialog

A. Thick border style property setting that can include a title bar with a Close button
B. Text entered on this property displays on the title bar of the form when in Form view
C. Until this window is closed, the focus cannot be changed to another database object
D. Double-clicking the name of this causes it to execute
E. Setting this property setting to "No" can display the Minimize and Maximize buttons

E, D, C, B, A

Computer Science & Information Technology

You might also like to view...

The readdir function returns

A. a pointer to the name of a file B. a pointer to a struct dirent

Computer Science & Information Technology

What is the output of the following code?

``` public class Test { public static void main(String[] args) { int[][] matrix = {{1, 2, 3, 4}, {4, 5, 6, 7}, {8, 9, 10, 11}, {12, 13, 14, 15}}; for (int i = 0; i < 4; i++) System.out.print(matrix[i][1] + " "); } } ``` a. 1 2 3 4 b. 4 5 6 7 c. 1 3 8 12 d. 2 5 9 13 e. 3 6 10 14

Computer Science & Information Technology