There is a problem with the power supplied to a group of computers and you do not know how to fix the problem. What should you do first?
a. Establish a theory of why you can't figure out the problem.
b. Contact the building supervisor or your manager.
c. Test the theory to determine cause
d. Document findings, actions, and outcomes.
Answer: b. Contact the building supervisor or your manager.
You might also like to view...
A(n) _____ workstation loads its software from a server and would most likely be found being used by big corporations
Fill in the blank(s) with correct word
class rectangleType{public:void setLengthWidth(double x, double y);//Postcondition: length = x; width = y;void print() const;//Output length and width;double area();//Calculate and return the area of the rectangle;double perimeter();//Calculate and return the parameter;rectangleType();//Postcondition: length = 0; width = 0;rectangleType(double x, double y);//Postcondition: length = x; width = y;private: double length; double width;}; Consider the accompanying class definition. Which of the following variable declarations is correct?
A. rectangle rectangleType; B. class rectangleType rectangle; C. rectangleType rectangle; D. rectangle rectangleType.area;