LOGBOOK

HELP

Quiz Entry - updated: 2026.07.05

Convert decimal 192 to hexadecimal step by step.

192 = C0. In binary it is 11000000; nibbles 1100 and 0000 give C and 0.

Step-by-step (binary-grouping method):

  1. 192 in 8-bit binary = 11000000 (128 + 64)
  2. Split into nibbles: 1100 and 0000
  3. 1100 = C, 0000 = 0

Result: 192 = C0 (often written 0xC0)

Check (positional): C × 16 + 0 × 1 = 12 × 16 = 192 ✓

Go deeper:

From Quiz: NETW1 / Number Systems | Updated: Jul 05, 2026