Decimal 327 in octal conversion provides the detailed information on what is the octal equivalent of (327)10, and the step-by-step work for how to convert the decimal (base-10) number 327 to its octal (base-8) equivalent.
(327)10 in octal is equal to:
(327)10 = (?)8
Perform successive MOD-8 operation for decimal 327, and mark the initial remainder as LSB and the final remainder as MSB as like the below.
| MOD-8 of 327 | 327 / 8 = 40 | Remainder is 7 → LSB |
| MOD-8 of 40 | 40 / 8 = 5 | Remainder is 0 |
| MOD-8 of 5 | 5 / 8 = 0 | Remainder is 5 → MSB |
Arrange the remainders from MSB to LSB forms the octal equivalent of 327.
32710 = 5078
Hence,
327 in octal is 507
where,
327
10 is the given decimal number,
10 in 327
10 represents the base-10 or decimal number system,
507
8 is the octal equivalent of the decimal 327,
8 in 507
8 represents the base-8 or octal number system.
Important Notes: (327)10 in Octal
The below are some of the important notes to be remembered while converting the (base-10) decimal number 327 into a (base-8) octal equivalent.
- The first remainder of MOD-8 of 327 is a Least Significant Bit (LSB).
- The final remainder of MOD-8 of 327 is a Most Significant Bit (MSB).
- The remainders of MOD-8 of 327 should be written from MSB to LSB to form the octal equivalent for the given decimal number (327)10.