Answer:
BAC4₁₆ = 47812₁₀
Step-by-step explanation:
To convert from hexadecimal base system to decimal base system use this formula:
![N = x_1 * 16^0 + x_2 * 16^1 + x_3 * 16^2 + x_4 * 16^3+ ... + x_n 16^n^-^1](https://img.qammunity.org/2020/formulas/computers-and-technology/college/yv23watayajomqzl71fhjoaa9nytu9h2iy.png)
, where position of the x₁ is the rightmost digit of the number.
and:
- A = 10.
- B = 11.
- C = 12.
- D = 13.
- E = 14.
- F = 15.
BAC4 = 11*16³+10*16²+C*16¹+4*16⁰ = 45056 + 2560 + 192 + 4 = 47812