Insertion of an internal hyperlink does not require

(a) the internal location to have an anchor marked with the NAME attribute.
(b) the link and the internal location to be on the same page.
(c) the same syntax as the insertion of a regular link.
(d) the name of the location to be preceded by # in the URL.


(b) the link and the internal location to be on the same page.

Computer Science & Information Technology

You might also like to view...

When using the debugger, which command lets you immediately execute all remaining statements inside the current method, and return to the method’s caller?

a. step out b. step over c. step into d. step return

Computer Science & Information Technology

Which of the following code fragments gives a random double value between 2 and 5 inclusive? You can assume that the random number seed has been set and any needed definitions and initializations have been made.

a) ``` 3.0*rand() + 2 ``` b) ``` 3.0*(RAND_MAX-rand())/RAND_MAX + 2 ``` c) ``` ((RAND_MAX-rand())/static_cast(RAND_MAX))*3 + 2``` d) ``` (RAND_MAX-rand())/static_cast(RAND_MAX)*5 -2 ``` e) ``` rand()/static_cast(RAND_MAX)*2 + 3 ```

Computer Science & Information Technology

Which of the following is NOT a setting in the Paragraph dialog box?

A) Line Spacing B) Tab Alignment C) Indentation D) Spacing Before

Computer Science & Information Technology

Data ____ allows you to display each field in a database table as an object on a Windows form.

A. binding B. objectification C. reflection D. referral

Computer Science & Information Technology