<span>In this case, that would be 13,000.</span>
Answer:
D 40,000nm
Step-by-step explanation: 1nm/10^-9m * 10^-6/1um = 10^3 nm/um
Therefore in 40 microns there are:
40um * 10^3 nm/um = 40 * 10^3 nm = 40,000 nm
Answer:
Step-by-step explanation:
i would say c
Answer:
import pandas as pd
vec = pd.Series([7.12,24,4,18,12,9])
vec.plot(kind = 'hist')
Step-by-step explanation:
You can use python for that.
By doing
import pandas as pd
vec = pd.Series([7.12,24,4,18,12,9])
vec.plot(kind = 'hist')
And this is the result you get