Answer:
Sense the current leakage
Trip the circuit
Cut off the electricity
Explanation:
The correct order is -
Sense the current leakage
Trip the circuit
Cut off the electricity
Reason -
First step has to be taken to sense the electric current leakage without it being detected, it cant be dealt with.
The second step consists of tripping the circuit so at to remove the flow of electricity.
The third step is to Cut the electricity off so to stop the leakage and be safe.
Builderman is dksbdkbsnsbs
Answer:
for i in range(0,10):
if SimonPattern[i] == UserPattern[i]:
score = score + 1
i = i + 1
else:
break
if i == 9:
score = score + 1
print("Total Score: {}".format(score))
Explanation:
This for loop was made using Python. Full code attached.
- For loop requires a range of numbers to define the end points. For this Simon Says game, we are talking about 10 characters, so that must be the range for the for loop: from 0 to 10.
- Conditional if tests if Simon pattern matches User's one characheter by one and add point for each match.
- Break statement is ready to escape the for loop at first mismatch.
- As we are starting from index 0, if the users matched all the characters correctly, then we need to add 1, otherwise the maximun score would be 9 and it should be 10.
Answer:
why you doin this
Explanation:
is this so we get free points?