Efficiency is the minimum use of energy to accomplish the task. The wasted energy will be 375 J when 750 J of energy is given.
<h3>What is wasted energy?</h3>
Wasted energy is energy that is not useful when the transformation in the system occurs.
Total energy = 750 J
The efficiency of the system = 50 %
Output work (OW) is calculated as:
Efficiency = output work ÷ input work × 100%
750 × 50 = 100 OW
OW = 375 J
Wasted energy = Total energy - output work
= 750 - 375
= 375 J
Therefore, the machine is 50 % inefficient and has wasted energy of 375 J.
Learn more about wasted energy here:
brainly.com/question/16177264
#SPJ4
Answer:
Modulus of resilience will be 
Explanation:
We have given yield strength 
Elastic modulus E = 104 GPa
We have to find the modulus
Modulus of resilience is given by
Modulus of resilience
, here
is yield strength and E is elastic modulus
Modulus of resilience
Answer:
See explanation
Explanation:
The magnetic force is
F = qvB sin θ
We see that sin θ = 1, since the angle between the velocity and the direction of the field is 90º. Entering the other given quantities yields
F
=
(
20
×
10
−
9
C
)
(
10
m/s
)
(
5
×
10
−
5
T
)
=
1
×
10
−
11
(
C
⋅
m/s
)
(
N
C
⋅
m/s
)
=
1
×
10
−
11
N
Answer:
sum2 = 0
counter = 0
lst = [65, 78, 21, 33]
while counter < len(lst):
sum2 = sum2 + lst[counter]
counter += 1
Explanation:
The counter variable is initialized to control the while loop and access the numbers in <em>lst</em>
While there are numbers in the <em>lst</em>, loop through <em>lst</em>
Add the numbers in <em>lst</em> to the sum2
Increment <em>counter</em> by 1 after each iteration