Match each of the following network types to its network coverage area:

I. CAN
II. LAN
III. MAN
IV. PAN
V. WAN

A. all the campuses in a state-wide university system
B. a single geographic area such as Orlando
C. a single building on your campus
D. all the devices in your dorm room
E. a single college campus


E, C, B, D, A

Computer Science & Information Technology

You might also like to view...

Select all that apply. Which of the following can be used to ensure that valid selections are processed in a menu-driven program?

a. an input validation loop b. the default clause of a case structure c. a For loop d. the Else clause in an If-Then-Else structure

Computer Science & Information Technology

What does the following code do?

``` 1 try 2 { 3 double myDouble1 = 4 Double.parseDouble( double1JTextField.getText() ); 5 double myDouble2 = 6 Double.parseDouble( double2JTextField.getText() ); 7 double result = myDouble1 * myDouble2; 8 resultJTextField.setText( String.valueOf( result ) ); 9 } 10 catch( NumberFormatException exception ) 11 { 12 JOptionPane.showMessageDialog( this, 13 "Please enter decimal numbers", 14 "NumberFormatException occurs", JOptionPane.ERROR_MESSAGE ); 15 } /code}

Computer Science & Information Technology

A data series is a related set of:

A) headings. B) legends. C) chart sheets. D) data points.

Computer Science & Information Technology

A cell value that depends on the value in another cell is known as a(n) ________ of that cell

A) dependent B) delimiter C) precedent D) subtotal

Computer Science & Information Technology