What is the value of the MsgBoxStyle.OKOnly?

A. 0
B. 1
C. 2
D. 3


Answer: A

Computer Science & Information Technology

You might also like to view...

Draw an inheritance hierarchy for classes Quadrilateral, Trapezoid, Parallelogram, Rectangle and Square. Use Quadrilateral as the base class of the hierarchy. Make the hierarchy as deep as possible.

What will be an ideal response?

Computer Science & Information Technology

What does this program segment do?

``` s = 0; i = 1; do { s += i; i++; } while (i < n); ``` a. Adds all the integers from 1 to n. b. Adds all the integers from 1 to n-1. c. Adds the even integers from 1 to n. d. Adds the odd integers from 1 to n. e. None of the above.

Computer Science & Information Technology

In 1994, Netscape defined a set of ____ web-safe colors that appear consistently in all browsers and on Macintosh, Windows, and UNIX platforms.

A. 210 B. 216 C. 220 D. 224

Computer Science & Information Technology

Use the OUTPUT statement to accomplish the tasks:

Combine the preceding two problems into a single statement.

Computer Science & Information Technology