Answer:
A continuity test
Explanation:
A continuity test is used to verified that current will flow in an electrical circuit, it performed by placing a small voltage across the chosen path. continuity test ensure that the equipment grounding conductor is electrically continuous and this test is perform on all the cord sets, receptacles that aren't part of a building or structure's permanent wiring, and cord-and-plug connected equipment required to be grounded. example of equipment used in testing current flow in continuity test are Analog multi-meter, voltage/continuity tester etc.
Continuity test and terminal connection test are the two test required by OSHA on all electrical equipment
Answer:
warning signs
Explanation:
give directions on your surroundings
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); } }