Match each term below with the statement that best defines it.

A. Used to run a macro
B. Provides consistent descriptive text as you navigate records
C. Displays choices for a field
D. Used to provide a list of possible data entries
E. Creates a three-dimensional aspect on a form
F. Used to provide a list of options for a field plus the ability for the user to enter a new value
G. Best choice to display a field such as Veteran that has only two options, Yes or No
H. Used to visually separate information on a form

A. Command button
B. Label
C. Option button
D. List box
E. Tab control
F. Combo box
G. Toggle button
H. Line

Computer Science & Information Technology

You might also like to view...

The Presets gallery contains effects that are a combination of other effects

Indicate whether the statement is true or false

Computer Science & Information Technology

What is displayed on the console when running the following program?

``` public class Test { public static void main(String[] args) { try { System.out.println("Welcome to Java"); int i = 0; int y = 2/i; System.out.println("Welcome to Java"); } finally { System.out.println("End of the block"); } System.out.println("End of the block"); } }``` a. The program displays Welcome to Java three times followed by End of the block. b. The program displays Welcome to Java two times followed by End of the block. c. The program displays Welcome to Java two times followed by End of the block two times. d. The program displays Welcome to Java and End of the block, and then terminates because of an unhandled exception.

Computer Science & Information Technology