Which of the following network types is suitable for a 10 gigabyte core network using 10 meter (33 feet) fiber runs?
A. 100Base-FX
B. 10GBase-SR
C. 10GBase-ER
D. 10GBase-SW
Answer: B. 10GBase-SR
You might also like to view...
To change the color of a Web page background, specify the color change in the
tagIndicate whether the statement is true or false
which assigns the string theName to myAccounts’s Name property. Which of the following is false regarding when property Name is invoked by the expression myAccount.Name on the left of an assignment?
``` myAccount.Name = theName; ``` a) The app transfers program execution to Name’s set accessor. b) Property Name’s set accessor performs its task—that is, it stores in the myAccount object’s name instance variable the string value that was assigned to property Name. c) When Name’s set accessor completes execution, program control returns to where the Name property was accessed, then execution continues at the next statement. d) All of the above are true.