Match the following terms to their meanings:

I. user types data and is allowed to change the format
II. user enters data but is not allowed to change the format
III. user picks a choice from a list but then modifies the item name
IV. user selects from a list of predefined items
V. user selects an item by clicking the box that displays beside the item

A. Plain Text control
B. Drop-Down List control
C. Combo Box control
D. Check Box control
E. Rich Text control


E, A, C, B, D

Computer Science & Information Technology

You might also like to view...

What is the value of myCount.count displayed?

``` public class Test { public static void main(String[] args) { Count myCount = new Count(); int times = 0; for (int i=0; i<100; i++) increment(myCount, times); System.out.println( "myCount.count = " + myCount.count); System.out.println("times = "+ times); } public static void increment(Count c, int times) { c.count++; times++; } } class Count { int count; Count(int c) { count = c; } Count() { count = 1; } }``` a. 101 b. 100 c. 99 d. 98

Computer Science & Information Technology

A space that is reserved and formatted in a document, but does not print unless text is entered is a(n) ________

A) caption B) image C) placeholder D) chart

Computer Science & Information Technology

Describe CSMA/CA.

What will be an ideal response?

Computer Science & Information Technology

An indirect expression is coded with an ampersand (&) and an identifier.

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

Computer Science & Information Technology