Answer:
Explanation:
The python code to generate this is quite simple to run.
i hope you understand everything written here, you can as well try out other problems to understand better.
First to begin, we import the package;
Code:
import pandas as pd
import matplotlib.pyplot as plt
name = input('Enter name of the file: ')
op = input('Enter name of output file: ')
df = pd.read_csv(name)
df['Date'] = pd.to_datetime(df["Date"].apply(str))
plt.plot(df['Date'],df['Absent']/(df['Present']+df['Absent']+df['Released']),label="% Absent")
plt.legend(loc="upper right")
plt.xticks(rotation=20)
plt.savefig(op)
plt.show()
This should generate the data(plot) as seen in the uploaded screenshot.
thanks i hope this helps!!!
Answer:
2.44 mV
Explanation:
This question has to be one of analog quantization size questions and as such, we use the formula
Q = (V₂ - V₁) / 2^n
Where
n = 12
V₂ = higher voltage, 5 V
V₁ = lower voltage, -5 V
Q = is the change in voltage were looking for
On applying the formula and substitutiting the values we have
Q = (5 - -5) / 2^12
Q = 10 / 4096
Q = 0.00244 V, or we say, 2.44 mV
H is the answer
Step by step
Answer:
The final velocity of the rocket is 450 m/s.
Explanation:
Given;
initial velocity of the rocket, u = 0
constant upward acceleration of the rocket, a = 18 m/s²
time of motion of the rocket, t = 25 s
The final velocity of the rocket is calculated with the following kinematic equation;
v = u + at
where;
v is the final velocity of the rocket after 25 s
Substitute the given values in the equation above;
v = 0 + 18 x 25
v = 450 m/s
Therefore, the final velocity of the rocket is 450 m/s.
Answer:
The Full details of the answer is attached.