Answer:
<h2>
B. Switch</h2>
Explanation:
<u>A device designed to open or close a circuit under controlled conditions is called a switch. The terms “open” and “closed” refer to switches as well as entire circuits. An open switch is one without continuity: current cannot flow through it.</u>
<h2><u>
Hope this helps! Please consider marking brainliest!! </u></h2>
Answer:
3.95 m
Explanation:
m = 1 kg, h = 100 m, k = 125 N/m
Let the spring is compressed by y.
Use the conservation of energy
potential energy of the mass is equal to the energy stored in the spring
m x g x h = 1/2 x ky^2
1 x 9.8 x 100 = 0.5 x 125 x y^2
y^2 = 15.68
y = 3.95 m
Answer:
Explained
Explanation:
public int dimension(int [][]a2d,int nElements)
{
int count = 0;
for(int i = 0;i < a2d.length ; i++)
{
count = count + a2d[i].length;
}
return count;
}
I don't understand the language.....