Answer:
It really depends on what you want it to do. I would make one that does chores around the house so I don't have to.
Explanation:
Answer:
b. diagnoses and corrects errors in an operational system
Explanation:
Corrective maintenance is one that is performed with the purpose of repairing faults or defects that occur in equipment and machinery. As such, it is the most basic way of providing maintenance, as it simply involves repairing what has broken down. In this sense, corrective maintenance is a process that basically consists of locating and correcting faults or damages that are preventing the machine from performing its function in a normal way.
Given:
voltage, V = 3600V
step-up voltage, V' = 100000 V
Resistance of line, 
Solution:
To calculate % heat loss in long distance power line:
Power produced by AC generator, P =
W
P = 180000 W = 180 kW
At step-up voltage, V = 100000V or 100 kV
current, I = 
I = 
I = 1.8 A
Power line voltage drop is given by:



Power dissipated in long transmission line 
Power dissipated in long transmission line
= 324 W
% Heat loss in power line, 
% Heat loss in power line, 

Answer:
See explaination
Explanation:
int RED=10; int BLUE=11; int GREEN=12; int BUTTON1=8; int BUTTON2=9; void setup() { pinMode(RED, OUTPUT); pinMode(BLUE, OUTPUT); pinMode(GREEN, OUTPUT); pinMode(BUTTON1, INPUT); pinMode(BUTTON2, OUTPUT); } void loop() { int BTN1_STATE=digitalRead(BUTTON1); int BTN2_STATE=digitalRead(BUTTON2); if(BTN1_STATE==HIGH) { digitalWrite(BLUE, HIGH); delay(1000); // Wait for 1 second digitalWrite(BLUE, LOW); } if(BTN2_STATE==HIGH) { digitalWrite(RED, HIGH); delay(4000); // Wait for 4 seconds digitalWrite(RED, LOW); } if(BTN1_STATE==HIGH && BTN2_STATE==HIGH) { digitalWrite(GREEN, HIGH); delay(2000); // Wait for 2 second digitalWrite(GREEN, LOW); } }