Match the following terms to their meanings:

I. Parent window
II. Modal window
III. Pop-up window
IV. Yes
V. Form

A. Stays on the screen only until the user selects one of the commands
B. User can't enter any information anywhere else until this is closed
C. Like most of the objects you have opened it displays with its own tab
D. The pop-up property setting displays an object in its own window
E. The original window that opened the modal window

E, B, A, D, C

Computer Science & Information Technology

You might also like to view...

In Excel, you can not only track and manage financial and numerical data, but you can also create simple databases

Indicate whether the statement is true or false

Computer Science & Information Technology

The value of z at loop exit could best be described as

Assume that all variables are of type int and that y and z are initialized to 0. ``` for (int i = 0; i < 100; ++i) { cin >> x; y += x; if ( x % 2 == 0 ) ++z; } ``` a. the percentage of x multiplied by 2 b. the number of positive integers entered c. the number of even integers entered d. the number of odd integers entered

Computer Science & Information Technology