_____ are a valuable formatting tool for creating Web pages; you can use Excel to create them.

A. Frames
B. Cells
C. Divs
D. Tables


Answer: D

Computer Science & Information Technology

You might also like to view...

Show the printout of the following code:

```#include using namespace std; void swap(int a[]) { int temp = a[0]; a[0] = a[1]; a[1] = temp; } int main() { int a[] = {1, 2}; swap(a); cout << "a[0] = " << a[0] << " a[1] = " << a[1] << endl; return 0; } ```

Computer Science & Information Technology

(Dangling-else Problem) State the output for each of the following when x is 9 and y is 11 and when x is 11 and y is 9. The compiler ignores the indentation in a C++ program. The C++ com- piler always associates an else with the previous if unless told to do otherwise by the placement of braces {}. On first glance, you may not be sure which if and else match, so this is referred to as the “dangling-else” problem. We eliminated the indentation from the following code to make the problem more challenging. [Hint: Apply indentation conventions you’ve learned.]

a) ``` if ( x < 10 ) if ( y > 10 ) cout << "*****" << endl; else cout << "#####" << endl; cout << "$$$$$" << endl; ``` b) ``` if ( x < 10 ) { if ( y > 10 ) cout << "*****" << endl; } else { cout << "#####" << endl; cout << "$$$$$" << endl; } ```

Computer Science & Information Technology

____________________ is the protection of information and its critical elements, including the systems and hardware that use, store, and transmit that information.

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

Computer Science & Information Technology

The ________ dialog box in Project 2013 includes all the details for a single task

Fill in the blank(s) with correct word

Computer Science & Information Technology