Decimal to Binary Conversion Explained (with Solved Examples)

  Рет қаралды 119,572

ALL ABOUT ELECTRONICS

ALL ABOUT ELECTRONICS

Күн бұрын

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:
kzbin.info/door/GA2...
Official Website:
www.allaboutelectronics.org​
Follow me on Facebook:
/ allaboutelec...​
Follow me on Instagram:
/ all_about.e...​
--------------------------------------------------------------------------------------------------
Music Credit: www.bensound.com

Пікірлер: 36
@ALLABOUTELECTRONICS
@ALLABOUTELECTRONICS 3 жыл бұрын
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
@ashvikadoss6153 20 күн бұрын
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
@Youtubelegend519 3 ай бұрын
I can understand this very well More than our teachers thank you so much ❤️
@ElectronicsCircuitHubECH
@ElectronicsCircuitHubECH 3 жыл бұрын
Good information
@Nyx_Galaxy_777
@Nyx_Galaxy_777 8 ай бұрын
Very useful Even other languages students understand this topic, thank you so much 😇
@user-qn8vb4xq5p
@user-qn8vb4xq5p 10 ай бұрын
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 😊
@poojashah6183
@poojashah6183 3 жыл бұрын
Bestest 👌🏻👌🏻
@asfandimran1818
@asfandimran1818 2 жыл бұрын
Sir very good 👍
@subhankarsarkar9089
@subhankarsarkar9089 2 жыл бұрын
commendable!!
@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❤️❤️❤️
@randomchannel1145
@randomchannel1145 3 ай бұрын
I'm still confused on the how to get their reminder?!!! I can't get it😥
@gayatripatil2907
@gayatripatil2907 2 жыл бұрын
Excellent lecture sir 😽✨🤙✌✌✌👍👍👍👍👍👍🤩🤩no words to say ❤❤
@ALLINONE-ki4yo
@ALLINONE-ki4yo 7 ай бұрын
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
@harikrishnanb3564
@harikrishnanb3564 3 жыл бұрын
sir very very good explanation.keep it up.thanks
@ElectronicsCircuitHubECH
@ElectronicsCircuitHubECH 3 жыл бұрын
Nice
@divyanshirawat4998
@divyanshirawat4998 Жыл бұрын
Thanks sir I don't understand this then I saw your video because tomorrow is my computer exam
@ALLABOUTELECTRONICS
@ALLABOUTELECTRONICS Жыл бұрын
Good luck !!
@sindhujalingampally6066
@sindhujalingampally6066 3 жыл бұрын
Sir my request is if possible canyou please do videos related to embedded systems,Vlsi Sir.
@mr.crazyboy25329
@mr.crazyboy25329 7 ай бұрын
Sir please tell layers in krita, And more on HTML5
@kartikdharkar2209
@kartikdharkar2209 3 жыл бұрын
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
@kranthikumargoud07 3 жыл бұрын
❤️
@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
@asfandimran1818
@asfandimran1818 2 жыл бұрын
Thanks your mail
@regularloot8349
@regularloot8349 7 ай бұрын
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
@glucosekun8811 3 жыл бұрын
(0.625)10→(0.101)2
@yussufatiba6304
@yussufatiba6304 3 жыл бұрын
Good day sir, I sent you a text on your Facebook messenger. But no response yet and it’s urgent sir. Thanks 🙏
@alpaq9722
@alpaq9722 3 жыл бұрын
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
@yathiym 2 жыл бұрын
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__0356 11 ай бұрын
Please provide classes in Hindi language
@caprisworld312
@caprisworld312 2 жыл бұрын
very confusing video
@cryptofixyup
@cryptofixyup 2 жыл бұрын
0.000009999887780259 BNB WHERE IS THE POINT FOR SUCH A TRANSACTIONS ❓ WHAT'S THE REAL VALUE OF THE NUMBER YOU ALL SEE ABOVE 🙏
1's complement and 2's complement | Signed Binary Numbers Explained
16:54
ALL ABOUT ELECTRONICS
Рет қаралды 197 М.
🤔Какой Орган самый длинный ? #shorts
00:42
The child was abused by the clown#Short #Officer Rabbit #angel
00:55
兔子警官
Рет қаралды 24 МЛН
Wait for the last one! 👀
00:28
Josh Horton
Рет қаралды 150 МЛН
CCD vs. CMOS
0:46
Dallmeier Electronic GmbH & Co. KG
Рет қаралды 86 М.
How to Convert Decimals to Hexadecimal
9:35
tecmath
Рет қаралды 4,1 М.
Binary Division Explained (with Examples)
14:52
ALL ABOUT ELECTRONICS
Рет қаралды 112 М.
How To Convert Hexadecimal to Binary
11:38
The Organic Chemistry Tutor
Рет қаралды 1,5 МЛН
Decimal to Binary Conversion | PingPoint
15:23
PingPoint
Рет қаралды 10 М.
Игровой Комп с Авито за 4500р
1:00
ЖЕЛЕЗНЫЙ КОРОЛЬ
Рет қаралды 2 МЛН
Как слушать музыку с помощью чека?
0:36
Хотела заскамить на Айфон!😱📱(@gertieinar)
0:21
Взрывная История
Рет қаралды 6 МЛН
Hisense Official Flagship Store Hisense is the champion What is going on?
0:11
Special Effects Funny 44
Рет қаралды 2,8 МЛН
В России ускорили интернет в 1000 раз
0:18
Короче, новости
Рет қаралды 1,8 МЛН