IT Log

Record various IT issues and difficulties.

Tag: remainder


  • How to convert decimal to hexadecimal

    To convert a decimal number to hexadecimal, follow these steps: Divide by 16: Continuously divide the decimal number by 16. Record Remainders: Keep track of the remainders from each division. These will form the hexadecimal digits. Map Remainders to Hexadecimal: Remainders 0-9 correspond directly to 0-9 in hex. Remainders 10-15 are represented by letters A-F…