Answer:
Conductor
Explanation:
Current is carried by a conductor.
__
The purpose of a dielectric and/or insulator is to prevent current flow. An electrostatic field may set up the conditions for current flow, but it carries no current itself.
Answer:
Alice is correct.
The loop are dependent.
Explanation:
for(i = 1; i <= N; i = (i*2)+17 )
for(k = i+1; k <= i+N; k = k+1) // notice i in i+1 and i+N
printf("B")
This is a nested for-loop.
After the first for-loop opening, there is no block of statement to be executed rather a for-loop is called again. And the second for-loop uses the value of i from the first for-loop. The value of N is both called from outside the loop.
So, the second for-loop depend on the first for loop to get the value of i. For clarity purpose, code indentation or use of curly brace is advised.
The displacement ∆S of the particle during the interval from t = 2sec to 4sec is; 210 sec
<h3>How to find the displacement?</h3>
We are given the velocity equation as;
s' = 40 - 3t²
Thus, the speed equation will be gotten by integration of the velocity equation to get;
s = ∫40 - 3t²
s = 40t - ¹/₂t³
Thus, the displacement between times of t = 2 sec and t = 4 sec is;
∆S = [40(4) - ¹/₂(4)³] - [40(2) - ¹/₂(2)³]
∆S = 210 m
Read more about Displacement at; brainly.com/question/4931057
#SPJ1