Octal Hexadecimal to Binary Conversion in Hindi

Octal to Binary

किसी भी octal number को binary मे convert करने के लिए हम उस number के सभी digits को अलग अलग लिख लेंगे, अब इन सभी digits को three digit binary मे convert करेंगे (three digit binary का मतलब है की सभी binary मे three digits होने चाहिए अगर किस मे केवल एक या दो digit ही है तो उनके आगे 0 का use करके उन्हे भी three digit binary बना लेंगे) अब इन सभी three digit binary को side by side लिख लेंगे यही उस octal number का binary होगा।

 

Example: Convert octal number 157 to binary

Split digits: 1, 5, 7

Convert each digits to three digit binary:

1 = 001

5 = 101

7 = 111

Now write all binary side by side:

001101111

So, 157 (octal) = 001101111 (binary)
Or simply: 1101111 (leading 0 optional)

 

Hexa-decimal to Binary

किसी भी hexadecimal number को binary मे convert करने के लिए हम उस number के सभी digits को अलग अलग लिख लेंगे, अब इन सभी digits को four digit binary मे convert करेंगे (four digit binary का मतलब है की सभी binary मे four digits होने चाहिए अगर किस मे केवल एक दो या तीन digit ही है तो उनके आगे 0 का use करके उन्हे भी four digit binary बना लेंगे) अब इन सभी four digit binary को side by side लिख लेंगे यही उस octal number का binary होगा।

 

Example: Convert hexadecimal number 2F to binary

Split digits: 2, F or 15 (in hexadecimal number system F = 15)

Convert each digits to three digit binary:

2 = 0010

15 = 1111

Now write all binary side by side:

00101111

So, 2F (hexadecimal) = 00101111 (binary)
Or simply: 101111 (if you ignore leading 0s)

 

Add a comment...

  • All Posts
  • Artificial Intelligence
  • Computer Fundamentals
  • Computer Networks
  • Data Analytics
  • Data Science
  • DBMS
  • Deep Learning
  • Digital Electronics
  • DSA with Python
  • Excel
  • Exercise
  • Git & Github
  • Machine Learning
  • Matplotlib
  • Natural Language Processing
  • NumPy
  • Operating System
  • Pandas-s
  • Power BI
  • Python Tutorial
  • Scikit-learn
  • Seaborn
  • SQL & MySQL
computer networks

Table of Contents All Chapters 1. OSI Model      1.1. Physical Layer      1.2. Data Link Layer  ...

computer networks

Table of Contents All Chapters 1. Topology 2. Types of Topology      2.1. Point to Point Topology    ...

computer networks

Table of Contents All Chapters 1. Data Communication 2. Types of Data Communication      2.1. Simplex      2.2....

digital electronics number system

Table of Contents All Chapters 1. Logic Gate 2. AND Gate      2.1. AND Gate Truth Table 3. OR...

Edit Template

Sign up to track your learning

Login to continue your learning tracking

To reset your password, please enter your email address or username below.

Scroll to Top