Number System | Professor Porua https://www.professorporua.squaryum.com Squaryum's Educational Guide Fri, 14 Mar 2025 06:44:42 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.1 https://www.professorporua.squaryum.com/wp-content/uploads/2024/01/cropped-Logo-500-32x32.png Number System | Professor Porua https://www.professorporua.squaryum.com 32 32 ASCII https://www.professorporua.squaryum.com/number-system/ascii/ Sun, 09 Mar 2025 07:45:19 +0000 https://www.professorporua.squaryum.com/?p=513

American Standard Code for Information Interchange

7 bit code originated in 1960s to standardize data interchange between computers & teleprinters

ASCII

SYMBOL

32

space

48 to 57

0 to 9

65 to 90

A to Z

97 to 122

a to z

Example:

Suppose a binary number 10010111100100 needs to be transferred to its respective ASCII code.

Step 1: Break the binary number into sets of 7 bits from right to left. (1001011 | 1100100)
Step 2: Transfer each set to their respective decimal. (75 | 100)
Step 3: Transfer each set to their respective ASCII. (K | d)

So, 10010111100100 = Kd

]]>
Binary Calculation https://www.professorporua.squaryum.com/number-system/binary-calculation/ Mon, 22 Jan 2024 09:12:12 +0000 https://www.professorporua.squaryum.com/?p=244

Binary Addition

Binary Subtraction

Binary Multiply

Binary Divide

]]>
Hexadecimal https://www.professorporua.squaryum.com/number-system/hexadecimal/ Sun, 21 Jan 2024 12:53:19 +0000 https://www.professorporua.squaryum.com/?p=204

Hexadecimal To Decimal

Hexadecimal To Binary

Binary To Hexadecimal

]]>
Octal https://www.professorporua.squaryum.com/number-system/octal/ Sun, 21 Jan 2024 12:04:52 +0000 https://www.professorporua.squaryum.com/?p=183

Octal To Decimal

Octal To Binary

Binary To Octal

]]>
Binary Decimal Hexadecimal Octal https://www.professorporua.squaryum.com/number-system/binary-decimal/ Sun, 21 Jan 2024 11:33:04 +0000 https://www.professorporua.squaryum.com/?p=168

Numbers

    1. Binary: Base 2 | 0 & 1 | 101012
    2. Decimal: Base 10 | 0 to 9 | 2910
    3. Octal: Base 8 | 0 to 7 | 125708
    4. Hexadecimal: Base 16 | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F | 19FDE16

Binary To Decimal

Decimal To Binary

]]>