Answer:
The answer is below
Explanation:
a) The work done is equal to the loss in kinetic energy (KE)
Change in kinetic energy (ΔKE) = Final kinetic energy - initial kinetic energy
Final KE = 
But the final velocity is 0 (at rest). Hence:
Final KE = 
ΔKE = 0 - K = -K
W = ΔKE = -K
Also, the work done (W) = charge (q) * distance (d) * electric field intensity (E)
W = qEd
but q = -e, hence:
W = -e * E * d
Using:
W = ΔKE
-e * E * d = -K
E= K / (e * d)
b) The electric field is in the direction of the electrons motion
Answer:
causes: unemployment, poverty,Lack of education,urbanization e.t.c
solutions:making people educated, giving people jobs
Answer
63 %
Explanation:
It is given that the reservoirs is at the temperature of 627°C and 27°C
So lower temperature that is
= 60°C=273+60=333 K
And the higher temperature that is
= 627°C =273+627=900 K
We know that the thermal efficiency of thermal reservoir = 1-
=
= 0.63 =63 %
So the efficiency of the reservoir is 63%
Answer:
Two Python codes are explained for the problem. Modify as appropriate
Explanation:
<u>CODE 1:</u>
def string_contains(input_string): # called function
if(input_string.__contains__('z')): # Check input_string contains 'z'
print('has the letter z.') # print input_string contains 'z'
else:
print('not worthwhile.') # print if input_string not contains 'z'
input_string = input('Please enter the string: ') # ACeept string from user
string_contains(input_string) # calling function where we pass input_string as actual parameter
<u>CODE 2:</u>
def string_contains(input_string):
for x in input_string:
if x=='z':
return 'has the letter z'
return 'not worthwhile'