Match the following terms to their meanings:

I. Notes
II. Non-hierarchal approach
III. Bookmarklet
IV. Hierarchal structure
V. Tags

A. Used for commenting
B. Used for classifying
C. Traditional approach to organizing files
D. Used when the physical storage location is not known
E. A link that is added to the web browser's favorites toolbar


A, D, E, C, B

Computer Science & Information Technology

You might also like to view...

How many bytes of memory are used in MS Visual C++ for the datatype float ?

A. 1 B. 4 C. 8 D. 2

Computer Science & Information Technology

Given the function prototype:float test(int, int, int);which of the following statements is legal?

A. cout << test(7, test(14, 23)); B. cout << test(test(7, 14), 23); C. cout << test(14, 23); D. cout << test(7, 14, 23);

Computer Science & Information Technology

The fromCharCode() method is called a ____ method because it is not used as a method of any string objects (which can be literal strings or variables) in your scripts.

A. local B. static C. global D. dynamic

Computer Science & Information Technology

If the following function will throw a string exception, then

void myFunction( ); a. the function definition and declaration should have a throw list b. the function definition, but not the declaration should have a throw list c. the function should have an empty throw list. d. all of the above

Computer Science & Information Technology