What type of information would be found on a logical topology diagram?

A. Location of departmental printer
B. Length and type of all cable runs
C. IP addressing scheme
D. Location of departmental switch
E. None of the above

Answer: C. IP addressing scheme

Computer Science & Information Technology

You might also like to view...

Composition means ______________.

a. that data fields should be declared private a. that data fields should be declared private b. that a class extends another class c. that a variable of supertype refers to a subtype object d. that a class contains a data field that references another object

Computer Science & Information Technology

Analyze the following code:

``` public class Test { public static void main(String[] args) throws MyException { System.out.println("Welcome to Java"); } } class MyException extends Error { } ``` a. You should not declare a class that extends Error, because Error raises a fatal error that terminates the program. b. You cannot declare an exception in the main method. c. You declared an exception in the main method, but you did not throw it. d. The program has a compile error.

Computer Science & Information Technology