Answer:
Explanation:
volume of 20.9 N
= 20.9 / 11.5 m³
= 1.8174 m³
In one hour 1.8174 m³ flows
in one second volume flowing = 1.8174 / 60 x 60
= 5 x 10⁻⁴ m³
Rate of volume flow = 5 x 10⁻⁴ m³ / s .
Answer:
# Program is written in Python Programming Language
# Comments are used for explanatory purpose
# Program starts here
# Accept input
Steps = input (Number of Steps: ")
# Calculate distance
distance = float(2000) * float(steps)
#Print Formatted Result
print('%0.2f' % distance)
# End of Program
.--------
The above program converts number of steps to miles.
At line 5, the number of steps is inputted and stored in variable named Steps.
At line 6, the number of miles is calculated by multiplying 2000 by the content of variable Steps
The result is printed at line 8
Answer:
capacity = 0.555 mAh
capacity = 3600 mAh
Explanation:
given data
battery = 1800 mAh
OCV = 3.9 V
solution
we get here capacity when it is in series
so here Q = 2C
capacity = 2 × ampere × second ...............1
put here value and we get
and 1 Ah = 3600 C
capacity =
capacity = 0.555 mAh
and
when it is in parallel than capacity will be
capacity = Q1 +Q2 ...............2
capacity = 1800 + 1800
capacity = 3600 mAh
The watts that are consumed is 80 watts.
<h3>What power factor?</h3>
The term power factor has to do with the measure of the efficiency of the use of energy. Recall that power is defined as the rate of doing work. The magnitude of the power factor shows the extent to which the power is used.
Now, to obtain the watts are consumed in a circuit having a power factor of 0. 2 if the input is 100 vac at 4 amperes we have; V × I × PF = 100V × 4A × 0.2 = 80 watts.
Learn more about power factor:brainly.com/question/10634193
#SPJ4