asked 216k views
3 votes
The octal system uses base 8. the only available digits would be 0, 1, 2, 3, 4, 5, 6, and 7. if the value 2468 is converted to decimal value, it would be expanded as (2 * 82) + (4 * 81) + (6 * 80). what would be the result of this

1 Answer

2 votes
Your description and expansion suggest you want to evaluate
.. 246₈ = 2*8² +4*8¹ +6*8⁰
.. = 2*64 +4*8 +6
.. = 166
answered
User Eduardo Conte
by
8.5k points
Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.