Convert Binary Number to Decimal Number


        The number written in the language of binary i.e. 01 is called binary number. If binary 1001 is to be converted to decimal numbers. Add it by putting the value on the given formula, so that the binary number is converted to decimal.

        बाइनरी यानी 01 के भाषा लिखा गया नम्बर बाइनरी नम्बर कहलाता है। यदि बाइनरी 1001101 को डेसिमल नम्बर में बदलना होता है। इसे दिये गये फार्मूला पर वैल्यू को रख कर जोड़ देते है जिससे बाइनरी नम्बर डेसिमल में कन्वर्ट हो जाता है।

Method - 1

1. यदि बाइनरी नम्बर 1001101 को डेसीमल नम्बर में बदलना है तो इसके वैल्यू को Right से उठाकर फार्मूला के Left Side में रखकर जहां 1 लिखा है उन सभी के नम्बर को जोड़ देते है। जिससे डेसीमल नम्बर निकल जाता है। जैसे उपर फिगर में दिखाया गया है।

Method-2

(1001)2 Convert into Decimal Number

(1001)2 = 1*23 +0*22 +0*21 +1*20 

= 8 + 0 + 0 +1

= 9     Hence the decimal of (1001)2 is 9


No comments:

Post a Comment