A(n) ________ is a control that performs an action or sequence of actions when it is clicked

Fill in the blank(s) with correct word


command button, button

Computer Science & Information Technology

You might also like to view...

In the following code, what is the output for list2?

``` public class Test { public static void main(String[] args) { int[] list1 = {1, 2, 3}; int[] list2 = {1, 2, 3}; list2 = list1; list1[0] = 0; list1[1] = 1; list2[2] = 2; for (int i = 0; i < list2.length; i++) System.out.print(list2[i] + " "); } } ``` a. 1 2 3 b. 1 1 1 c. 0 1 2 d. 0 1 3

Computer Science & Information Technology

When creating an address block, you correspond fields in the data source to fields in the main document in the ________ dialog box

A) Match Fields B) Merge Wizard C) Edit Recipient List D) Merge

Computer Science & Information Technology

A table design is in third normal form (3NF) if it is in 2NF and if all nonkey fields are dependent on one another.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

What does the abbreviation SQL stand for?

A. Simple Quorum Language B. Simple Query List C. Structured Query Language D. Structured Quorum List

Computer Science & Information Technology