A small window with options for completing a task is called a(n) ________

Fill in the blank(s) with correct word


dialog box

Computer Science & Information Technology

You might also like to view...

Which of the following is an example of an array declaration whose data type is a user-defined object?

(A) Dim students(50) As String (B) Dim students(50) As Student (C) Dim students(50) As Integer (D) Dim students(50) As TextBox

Computer Science & Information Technology

The time complexity of the p function depends upon:

``` 1 float p( float x, int n ) 2 { 3 if ( n == 0 ) 4 return 1; 5 else 6 return x p( x, n – 1 ); 7 } ``` A. the number of elements B. the magnitude of x C. the magnitude of n D. the magnitude of x n

Computer Science & Information Technology

To link to an external Web site, the ____ protocol must be included in the value for the hypertext reference.

A. mailto: B. TCP/IP C. http:// D. either a or c

Computer Science & Information Technology

A small storage device that plugs into your USB port is called a USB ________ drive

Fill in the blank(s) with correct word

Computer Science & Information Technology