The _______________menu in the Buttons and Forms panel offers six basic controls that you can apply to buttons such as Play, Pause, Stop, and Resume.

Fill in the blank(s) with the appropriate word(s).


options

Computer Science & Information Technology

You might also like to view...

The UML distinguishes an interface from other classes by placing the word “interface” in above the interface name.

a. italics. b. carets. c. guillemets. d. bold.

Computer Science & Information Technology

Match the following terms to their meanings:

I. Web site A. Creates a set of Web programming standards II. Web page B. Set of communication rules for computers III. W3C C. Collection of individual Web pages IV. XHTML D. Reformulation of HTML in XML V. Protocol E. Document on the World Wide Web

Computer Science & Information Technology

Describe type 1 and type 2 hypervisors.

What will be an ideal response?

Computer Science & Information Technology

Consider the Java code segment below:

``` Polygon poly2 = new Polygon(); poly2.addPoint(100, 30); poly2.addPoint(100, 130); ``` Which of the following will create a polygon that is a square? a. poly2.addPoint(100, 60); poly2.addPoint(100, 130); b. poly2.addPoint(200, 130); poly2.addPoint(200, 30); c. poly2.addPoint(200, 60); poly2.addPoint(200, 130); d. poly2.addPoint(100, 130); poly2.addPoint(100, 230);

Computer Science & Information Technology