A(n) ____ image is an image that changes its appearance when the mouse pointer is placed over it in a browser.

A. dynamic
B. rollover
C. extensible
D. pop-up


Answer: B

Computer Science & Information Technology

You might also like to view...

What is the output of the following code?

``` ArrayList list = new ArrayList(); String s1 = new String("Java"); String s2 = new String("Java"); list.add(s1); list.add(s2); 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

Which of the following would retrieve the value displayed in a

element which has id = "football" and store that information in a variable named sport?

a. sport = document.getElementById("football"); b. document.getElementById("football") = sport; c. sport = document.innerHTML(id = "football"); d. document.write("football");

Computer Science & Information Technology

By default, records in a query are displayed in primary key field order, even if that field is NOT included in the query

Indicate whether the statement is true or false

Computer Science & Information Technology

The ____________________ layer is responsible only for sending and receiving digital data, nothing else.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology