Which of the following tools should be used to physically attach an RJ45 connector to a CAT5 cable?
A. Snips
B. Screwdriver
C. Punch down tool
D. Crimping tool
Answer: D. Crimping tool
You might also like to view...
Which term describes the ability of an object to hold objects of several different types?
a. composition b. encapsulation c. information hiding d. polymorphism e. static binding
Microsoft provides a collection of free utilities for analyzing and troubleshooting problems specific to the Windows operating system. These utilities are part of the ________________ suite.
a. MSCONFIG b. Sysinternals c. Technet d. Winhex
Unlike the Windows Form Designer, the Web Form Designer ________.
a) does not provide two viewing modes b) provides two viewing modes c) allows you to design the graphical user interface d) does not allow you to design the user interface
Explicit values can be assigned to each enumerated constant, with unspecified values automatically continuing the integer sequence from the last specified value. For example, ____.
A. enum {Mon: 1, Tue, Wed, Thr, Fri, Sat, Sun}; B. enum {Mon, Tue, Wed, Thr, Fri, Sat, Sun}; Mon = 1; C. enum {Mon = 1, Tue, Wed, Thr, Fri, Sat, Sun}; D. enum {Mon 1, Tue, Wed, Thr, Fri, Sat, Sun};