Document ____ are not referenced using an array property.

A. anchors
B. images
C. cookies
D. forms


Answer: C

Computer Science & Information Technology

You might also like to view...

What is the output of the following code segment if the user enters 90 for the score?

``` cout << "Enter your test score: "; cin >> test_score; if (test_score < 60) cout << "You failed the test." << endl; if (test_score > 60) cout << "You passed the test." else cout << "You need to study harder next time." << endl; ``` a. You failed the test. b. You passed the test. c. You need to study harder next time. d. You failed the test. You need to study harder next time. e. You passed the test. You need to study harder next time.

Computer Science & Information Technology

Consider your tip.html page . If you enter a check amount of $17.73 and select a 15% tip, the page will report 'You should tip $2.6595.' While mathematically accurate, this amount of precision is overkill. When dealing with dollars and cents, you really want the answer rounded up to two decimal places. In this case, $2.66.

Modify your tip.html page so that the tip amount is rounded up to two decimal places. Note that to round up, you will need to use the Math.ceil function instead of Math.round (which can round either up or down, depending on which integer value is closer.

Computer Science & Information Technology

A(n) ____________________ is a program provided by a search provider to search through a collection of Internet information to find what you want.

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

Computer Science & Information Technology

To create a straight line when drawing a line shape, hold down Ctrl as you drag the crosshair pointer.

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

Computer Science & Information Technology