Social ________ sites allow you save and share your favorites online

A) networking B) news C) review D) bookmarking


D

Computer Science & Information Technology

You might also like to view...

Which function could be used to validate an entry for a user's chosen name that must be between 4 and 12 characters?

a. random b. isString c. length d. toUpper

Computer Science & Information Technology

Modify the following code to produce the output shown. Use proper indentation tech- niques. You may not make any changes other than inserting braces and changing the indentation of the code. The interpreter ignores indentation in a JavaScript program. We have eliminated the indentation from the following code to make the problem more chal- lenging. [Note: It is possible that no modification is necessary.]

``` if ( y == 8 ) if ( x == 5 ) document.writeln( "@@@@@
" ); else document.writeln( "#####
" ); document.writeln( "$$$$$
" ); document.writeln( "&&&&&
" ); ``` a) Assuming x = 5 and y = 8, the following output is produced. @@@@@ $$$$$ &&&&& b) Assuming x = 5 and y = 8, the following output is produced. @@@@@ c. Assuming x = 5 and y = 8, the following output is produced. @@@@@ &&&&& d) Assuming x = 5 and y = 7, the following output is produced. [Note: The last three output statements after the else are all part of a compound statement.] ##### $$$$$ &&&&&

Computer Science & Information Technology

Which of the following is not true about freezing panes?

A) The locked areas become separate panes. B) It can involve one or more rows. C) It can involve one or more columns. D) You can skip rows or columns when selecting what to freeze.

Computer Science & Information Technology

To give proper credit to a source from which you drew information for a research paper, you would include a parenthetical ________ in the paper

A) works cited B) bibliography C) source D) citation

Computer Science & Information Technology