Answer:
In order to logically identify alternative solutions to problems
Explanation:
Electricians are specialized in electrical wiring of buildings, transmission lines, stationary machines, and related equipment. They are either employed in the installations of new electrical components, or to maintain an already installed component. The job of an electrician can be mentally tasking, especially in troubleshooting for fault, and methods of fixing of faults. Some problems might require an out-of-norm approach to solve, and the electrician has to be able to logically identify alternative solutions to problems.
Answer:
C. Brainstorm
Explanation:
<em>Brainstorming refers to thinking and developing ideas and solutions to problems</em>. It involves a free-thinking approach and putting oneself in the context of the problem you are attempting to solve. You can use the empathy maps to combine ideas from interviewing other people on the same. This stage is followed by defining the problem, concept generation, developing a solution, constructing a testing a prototype, evaluating the solution and finally presenting the solution.
Answer choice A is incorrect because it is the last stage .
Answer choice B is incorrect because it is the second stage.
Answer choice D is incorrect because it is step 5 and 6.
Answer:
1. Parallel circuit
2. Parallel circuit
3. Series circuit
4. Series circuit
5. Parallel circuit
6. Parallel circuit
Explanation:
1. In a parallel circuit, there are multiple paths for current to flow. The path each current takes depends on the resistance of the resistors on that path.
2. In a parallel circuit, current splits up into various paths to get the total current through the circuit, the current flow through each resistor is added.
3. In a series circuit the voltage across each resistor is not the same. to get back the total voltage, the voltages across each resistor needs to be added.
4. Series circuits have voltage drops across each resistor. this makes the voltage across each resistor depend on the resistance of the resistor.
5. In parallel circuits voltage is the same across each resistor because they are all connected directly to the same source.
6. In parallel circuits, the power is the same in each resistor of equal resistance since the voltage across each resistor is the same
Answer:
#include <iostream>//including iostream library to use functions such as cout and cin
using namespace std;
int main() {
int userInput = 0;
do
{
cout << "Enter a number < 100: " ;
cin >> userInput;
if (userInput < 100)//condition if number is less than 100
{
cout << "Your number < 100 is: " << userInput << endl;
}
} while (userInput > 100);//do while loop condition
return 0;
}
Explanation:
A do-while loop executes regardless in the first iteration. Once it has run through the first iteration, it checks if the condition is being met. If, the condition is TRUE, the loop begins the second iteration. If FALSE, the loop exits. In this case, the condition is the userInput. after the first iteration, lets say the userInput is 120, the condition userInput > 100 is true.Therefore, the loop will run again until eventually the number is less than hundred, lets say 25. In that case the condition would be 25 > 100, which would be false, so the loops will break.