Answer:
A. Adjacent
Step-by-step explanation:
Answer: C (1.25, 10.25)
Step-by-step explanation:
Answer:
504______________16
Step-by-step explanation:
Answer:
B. 8.
D. log2 256.
Step-by-step explanation:
Generally:
loga b + loga b
= loga b^2.
Therefore log2 16 + log2 16
= log2 16^2
= log2 256.
From the above:
256 = 2^x where x is the log.
Now 2^8 = 256 so the original log2 16 + log2 16 = 8.
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