After adding a new cable segment to the network, the technician should:
A. Update the disaster recovery plan.
B. Document the changes in the business continuity plan.
C. Update the wiring schematics.
D. Create a new baseline document
Answer: C. Update the wiring schematics.
You might also like to view...
The algorithms:
a. Are the finished sets of programming instructions as written in a specific computer language. b. Is the set of step by step instructions divided into the specific parts, or modules. c. Are the words written inside the flowchart. d. Are the modules outlined in a data flow pattern.
In the following example, how many times is the module called?
``` Module main () Call Welcome (5) End Module Module Welcome (Integer number) If number > 0 Then Display “Welcome to our store.” Call Welcome (number – 1) End If End Module ``` a. 1 b. 5 c. 6 d. 8