Which of the following types of interactive media users consumes services and information, like reading a Wikipedia article or comparing products on a web page?

A. Passive Viewer
B. Active User
C. Participant
D. Abstainer


Answer: A

Computer Science & Information Technology

You might also like to view...

A single Web page can contain at most one form.

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

Computer Science & Information Technology

What is the output of the following code?

``` ArrayList list = new ArrayList(); java.util.Date d = new java.util.Date(); list.add(d); list.add(d); System.out.println((list.get(0) == list.get(1)) + " " + (list.get(0)).equals(list.get(1))); ``` a. true false b. false true c. true true d. false false

Computer Science & Information Technology

Draw the 2-3 tree that results from adding the following elements into an initially empty tree:

34 45 3 87 65 32 1 12 17

Computer Science & Information Technology

The appearance of a command, submit, and reset button is determined by the browser.

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

Computer Science & Information Technology