Decimal to Binary Conversion Explained (with Solved Examples)

Ғылым және технология

In this video, how to convert the decimal number into the binary equivalent number is explained with solved examples.
Timestamps for topics covered in the video:
0:00 Introduction
0:57 Decimal to Other Base Number Systems
2:18 Decimal to Binary Number System
3:50 Example 1
5:47 Fractional Decimal Number to Other Base Number System
7:38 Fractional Decimal to Binary Number
8:55 Example 2
In this video, the procedure for converting the decimal number to binary equivalent number is explained in detail with solved examples.
Other useful videos related to Digital Electronics:
1) Introduction to Digital Electronics
• Introduction to Digita...
2) Binary to Decimal Conversion
• Binary Number System: ...
This video will be helpful to all the students of science and engineering in understanding how to convert any decimal number into a binary equivalent number.
#ALLABOUTELECTRONICS
#DigitalElectronics
#BinaryNumberSystem
#DecimalToBinaryConversion
--------------------------------------------------------------------------------------------------
Follow my second channel:
kzread.info/dron/GA2.html...
Official Website:
www.allaboutelectronics.org​
Follow me on Facebook:
/ allaboutelec...​
Follow me on Instagram:
/ all_about.e...​
--------------------------------------------------------------------------------------------------
Music Credit: www.bensound.com

Пікірлер: 36

  • @ALLABOUTELECTRONICS
    @ALLABOUTELECTRONICS3 жыл бұрын

    Timestamps for topics covered in the video: 0:00 Introduction 0:57 Decimal to Other Base Number Systems 2:18 Decimal to Binary Number System 3:50 Example 1 5:47 Fractional Decimal Number to Other Base Number System 7:38 Fractional Decimal to Binary Number 8:55 Example 2

  • @ashvikadoss6153
    @ashvikadoss615311 күн бұрын

    I was stuck on this topic for more than an hour, it simply took me 20 mins to understand this. This is the simplest yet the most efficient video i had seen on this topic, thank you so much sir! This was very very helpful for me

  • @Youtubelegend519
    @Youtubelegend5192 ай бұрын

    I can understand this very well More than our teachers thank you so much ❤️

  • @ariel2004
    @ariel2004 Жыл бұрын

    Thank you I've learned a lot tomorrow is our midterm exam for intro. To computing this help me thank done watching also a about the addition, subtraction and this❤️❤️❤️

  • @user-qn8vb4xq5p
    @user-qn8vb4xq5p10 ай бұрын

    Hello sir, you're classes are awesome. I would like to ask you to provide the slides/ ppt presentation in the videos as notes for us in the description of every video. I hope you'll do it. Thank you 😊

  • @Nyx_Galaxy_777
    @Nyx_Galaxy_7777 ай бұрын

    Very useful Even other languages students understand this topic, thank you so much 😇

  • @gayatripatil2907
    @gayatripatil29072 жыл бұрын

    Excellent lecture sir 😽✨🤙✌✌✌👍👍👍👍👍👍🤩🤩no words to say ❤❤

  • @harikrishnanb3564
    @harikrishnanb35643 жыл бұрын

    sir very very good explanation.keep it up.thanks

  • @poojashah6183
    @poojashah61833 жыл бұрын

    Bestest 👌🏻👌🏻

  • @ElectronicsCircuitHubECH
    @ElectronicsCircuitHubECH3 жыл бұрын

    Good information

  • @subhankarsarkar9089
    @subhankarsarkar90892 жыл бұрын

    commendable!!

  • @asfandimran1818
    @asfandimran18182 жыл бұрын

    Sir very good 👍

  • @ALLINONE-ki4yo
    @ALLINONE-ki4yo6 ай бұрын

    sir you are awesome thank you thank you thank you thank you thank you thank you thank you thank you thank you thank you thank

  • @randomchannel1145
    @randomchannel11453 ай бұрын

    I'm still confused on the how to get their reminder?!!! I can't get it😥

  • @ElectronicsCircuitHubECH
    @ElectronicsCircuitHubECH3 жыл бұрын

    Nice

  • @sindhujalingampally6066
    @sindhujalingampally60663 жыл бұрын

    Sir my request is if possible canyou please do videos related to embedded systems,Vlsi Sir.

  • @divyanshirawat4998
    @divyanshirawat4998 Жыл бұрын

    Thanks sir I don't understand this then I saw your video because tomorrow is my computer exam

  • @ALLABOUTELECTRONICS

    @ALLABOUTELECTRONICS

    Жыл бұрын

    Good luck !!

  • @mr.crazyboy25329
    @mr.crazyboy253297 ай бұрын

    Sir please tell layers in krita, And more on HTML5

  • @kartikdharkar2209
    @kartikdharkar22093 жыл бұрын

    Please post videos for FM,PM,PPM,PWM,PCM,PAM,ASK,PSK,FSK,MARY ASK,MARY FSK, MARY PSK

  • @ALLABOUTELECTRONICS

    @ALLABOUTELECTRONICS

    3 жыл бұрын

    PWM is already covered. Will also try to cover other topics.

  • @kranthikumargoud07
    @kranthikumargoud073 жыл бұрын

    ❤️

  • @asfandimran1818
    @asfandimran18182 жыл бұрын

    Thanks your mail

  • @ryanyu512
    @ryanyu512 Жыл бұрын

    This may help Assume K is the decimal number we want to convert to binary number Then, we can write into this formula: STEP 1 k_0*2^1 + r_0*2^0 = K k_0 is the quotient and r_0 is the remainder which is always zero or one STEP 2 if k_0 is > 0, then we can further decompose k_0 into the following formula k_1*2^1 + r_1*2^0 = k0 STEP 3 Then, we can substitute k_1*2^1 + r_1*2^0 = k0 into k_0*2^1 + r_0*2^0 = K, this generate the following formula (k_1*2^1 + r_1*2^0)*2^1 + r_0*2^0 = K k_1*2^2 + r_1*2^1 + r_0*2^0 = K If we keep on repeating STEP2 - 3, we always find that there is a k_n term multiplied by the highest power of 2 (2^n), and always find that the remainder always multiplied by remaining terms (2^0 to 2^n - 1 terms). If k_n = 0, then we can stop repeating STEP 2 - 3. If k_n != 0, then we need to keep on repeating STEP 2-3 until k_n = 0. From the above logic, it shows that why the remainders are important to find the answer of binary number. The following is the generalised formula for decimal number to binary number k_n*2^n + r_n-1*2^(n-1) + ... + r_2*2^2 + r_1*2^1 + r_0*2^0 = K k_n = 0 and r_n-1 to r_0 can be 0 or 1

  • @regularloot8349
    @regularloot83497 ай бұрын

    1:30 bro it is wrong b^0/b=b^-1 so it is not x0 or x1 it is x0/b and x1/b

  • @glucosekun8811
    @glucosekun88113 жыл бұрын

    (0.625)10→(0.101)2

  • @yussufatiba6304
    @yussufatiba63043 жыл бұрын

    Good day sir, I sent you a text on your Facebook messenger. But no response yet and it’s urgent sir. Thanks 🙏

  • @alpaq9722
    @alpaq97223 жыл бұрын

    Today the date is 8-4-21

  • @gunmaygaming7519

    @gunmaygaming7519

    Жыл бұрын

    Today date is 6-9-22

  • @user-dp9yy9jm7f

    @user-dp9yy9jm7f

    11 ай бұрын

    Today the date is 17-7-23

  • @yathiym
    @yathiym2 жыл бұрын

    Sir didn't understand the last step..i'e 1 decided by 2

  • @ALLABOUTELECTRONICS

    @ALLABOUTELECTRONICS

    2 жыл бұрын

    Suppose if you have 4, then you can divide it by 2. In that case, quotient is 2. And there is no remainder. But can not divide 1 by 2. So, quotient will be 0 and remainder is 1. I hope, it will clear your doubt.

  • @chanchal__0356
    @chanchal__035610 ай бұрын

    Please provide classes in Hindi language

  • @caprisworld312
    @caprisworld3122 жыл бұрын

    very confusing video

  • @cryptofixyup
    @cryptofixyup2 жыл бұрын

    0.000009999887780259 BNB WHERE IS THE POINT FOR SUCH A TRANSACTIONS ❓ WHAT'S THE REAL VALUE OF THE NUMBER YOU ALL SEE ABOVE 🙏

Келесі