What is the fastest Ethernet standard that can possibly be used on twisted-pair cabling?

a. 100Base-T
b. 1000Base-T
c. 10GBase-T
d. 10TBase-T


ANSWER: c

Computer Science & Information Technology

You might also like to view...

A(n) ___________________ is a special variable that holds the argument being passed into a method.

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

Computer Science & Information Technology

Which of the following statements is false?

a. A method is simply a function that you call on an object using the form object_name.method_name(arguments) b. The following session calls the string object s’s object’s lower and upper methods, which produce new strings containing all-lowercase and all-uppercase versions of the original string, leaving s unchanged: In [1]: s = 'Hello' In [2]: s.lower() # call lower method on string object s Out[2]: 'hello' In [3]: s.upper() Out[3]: 'HELLO' c. After the preceding session, s contains 'HELLO'. d. All of the above statements are true.

Computer Science & Information Technology

pthread_cond_wait unlocks a mutex and starts waiting

A. in an atomic operation B. in an automatic operation

Computer Science & Information Technology

Which feature in Windows XP enables you to change to another user account without logging out of the current user account?

A. Users and Groups b. User Account Control c. Fast User Switching d. Change Accounts

Computer Science & Information Technology