All language subtitles for 4_How to Count in Binary

af Afrikaans
ak Akan
sq Albanian
am Amharic
ar Arabic Download
hy Armenian
az Azerbaijani
eu Basque
be Belarusian
bem Bemba
bn Bengali
bh Bihari
bs Bosnian
br Breton
bg Bulgarian
km Cambodian
ca Catalan
ceb Cebuano
chr Cherokee
ny Chichewa
zh-CN Chinese (Simplified)
zh-TW Chinese (Traditional)
co Corsican
hr Croatian
cs Czech
da Danish
nl Dutch
en English
eo Esperanto
et Estonian
ee Ewe
fo Faroese
tl Filipino
fi Finnish
fr French
fy Frisian
gaa Ga
gl Galician
ka Georgian
de German
el Greek
gn Guarani
gu Gujarati
ht Haitian Creole
ha Hausa
haw Hawaiian
iw Hebrew
hi Hindi
hmn Hmong
hu Hungarian
is Icelandic
ig Igbo
id Indonesian
ia Interlingua
ga Irish
it Italian
ja Japanese
jw Javanese
kn Kannada
kk Kazakh
rw Kinyarwanda
rn Kirundi
kg Kongo
ko Korean
kri Krio (Sierra Leone)
ku Kurdish
ckb Kurdish (Soranî)
ky Kyrgyz
lo Laothian
la Latin
lv Latvian
ln Lingala
lt Lithuanian
loz Lozi
lg Luganda
ach Luo
lb Luxembourgish
mk Macedonian
mg Malagasy
ms Malay
ml Malayalam
mt Maltese
mi Maori
mr Marathi
mfe Mauritian Creole
mo Moldavian
mn Mongolian
my Myanmar (Burmese)
sr-ME Montenegrin
ne Nepali
pcm Nigerian Pidgin
nso Northern Sotho
no Norwegian
nn Norwegian (Nynorsk)
oc Occitan
or Oriya
om Oromo
ps Pashto
fa Persian
pl Polish
pt-BR Portuguese (Brazil)
pt Portuguese (Portugal)
pa Punjabi
qu Quechua
ro Romanian
rm Romansh
nyn Runyakitara
ru Russian
sm Samoan
gd Scots Gaelic
sr Serbian
sh Serbo-Croatian
st Sesotho
tn Setswana
crs Seychellois Creole
sn Shona
sd Sindhi
si Sinhalese
sk Slovak
sl Slovenian
so Somali
es Spanish
es-419 Spanish (Latin American)
su Sundanese
sw Swahili
sv Swedish
tg Tajik
ta Tamil
tt Tatar
te Telugu
th Thai
ti Tigrinya
to Tonga
lua Tshiluba
tum Tumbuka
tr Turkish
tk Turkmen
tw Twi
ug Uighur
uk Ukrainian
ur Urdu
uz Uzbek
vi Vietnamese
cy Welsh
wo Wolof
xh Xhosa
yi Yiddish
yo Yoruba
zu Zulu
Would you like to inspect the original subtitles? These are the user uploaded subtitles that are being translated: 1 00:00:00,870 --> 00:00:04,470 Binary is the fundamental communication block of computers, but 2 00:00:04,470 --> 00:00:08,100 it's used to represent more than just text and images. 3 00:00:08,100 --> 00:00:10,935 It's used in many aspects of computing, like computer networking, 4 00:00:10,935 --> 00:00:12,730 what you'll learn about in a later course. 5 00:00:12,730 --> 00:00:15,750 It's important that you understand how computers count in binary. 6 00:00:15,750 --> 00:00:20,070 We've shown you simple look up tables that you can use like the ASCII binary table. 7 00:00:20,070 --> 00:00:24,513 But as an IT support specialist whether you're working on networking or security, 8 00:00:24,513 --> 00:00:28,330 you'll need to know how binary works, so let's get started. 9 00:00:28,330 --> 00:00:31,541 You'll probably need a trusty pen and paper, a calculator and 10 00:00:31,541 --> 00:00:34,703 some good old fashioned brainpower to help you in this video. 11 00:00:34,703 --> 00:00:38,586 The binary system is how our computers count using 1s and 0s, but 12 00:00:38,586 --> 00:00:40,470 humans don't count like that. 13 00:00:40,470 --> 00:00:44,755 When you were a child you may have counted using ten fingers on your hand, 14 00:00:44,755 --> 00:00:49,197 that innate counting system is called the decimal form or base ten system. 15 00:00:49,197 --> 00:00:53,823 In the decimal system there are ten possible numbers you can use ranging from 16 00:00:53,823 --> 00:00:54,407 0 to 9. 17 00:00:54,407 --> 00:00:57,038 When we count binary which only uses 0 and 1, 18 00:00:57,038 --> 00:01:00,430 we convert it to a system that we can understand, decimal. 19 00:01:00,430 --> 00:01:06,990 330, 250 to 44 million, they're all decimal numbers. 20 00:01:06,990 --> 00:01:11,990 We use the decimal system to help us figure out what bits our computer can use. 21 00:01:11,990 --> 00:01:15,650 We can represent any number in existence just by using bits. 22 00:01:15,650 --> 00:01:20,375 That's right, we can represent this number just using ones and zeros, so 23 00:01:20,375 --> 00:01:21,660 how does that work? 24 00:01:21,660 --> 00:01:26,906 Let's consider these numbers, 128, 64, 32, 25 00:01:26,906 --> 00:01:31,850 16, 8, 4, 2 and 1, what patterns do you see? 26 00:01:31,850 --> 00:01:36,147 Hopefully you'll see that each number is a double of the previous number going right 27 00:01:36,147 --> 00:01:38,470 to left, what happens if you add them all up? 28 00:01:38,470 --> 00:01:41,159 You get 255, that's kind of weird, 29 00:01:41,159 --> 00:01:44,340 I thought we could have 256 values for a byte. 30 00:01:44,340 --> 00:01:47,343 Well, we do, the 0 is counted as a value, so 31 00:01:47,343 --> 00:01:50,760 the maximum decibel number you can have is 255. 32 00:01:50,760 --> 00:01:53,740 What do you think the number is represented here? 33 00:01:53,740 --> 00:01:56,513 See where the 1s and the 0s are represented? 34 00:01:56,513 --> 00:02:00,474 Remember, if our computers use the 1 then the value was on, 35 00:02:00,474 --> 00:02:02,900 if it sees a 0 then the value was off. 36 00:02:02,900 --> 00:02:05,720 If you add these numbers up you'll get a decimal value. 37 00:02:05,720 --> 00:02:07,921 If you guess 10, then you're right, 38 00:02:07,921 --> 00:02:11,900 good job, if you didn't get it, that's okay too, take another look. 39 00:02:11,900 --> 00:02:15,900 The 2 and 8 are on and if we add them up we get 10. 40 00:02:15,900 --> 00:02:19,782 Let's look at our ASCII binary table again, 41 00:02:19,782 --> 00:02:24,380 the letter h in binary is 01101000. 42 00:02:24,380 --> 00:02:26,850 Now let's look at an ASCII to decimal table. 43 00:02:26,850 --> 00:02:30,720 The letter h and decimal is 104. 44 00:02:30,720 --> 00:02:37,419 Now let's try our conversion chart again, 64+32+8=104. 45 00:02:37,419 --> 00:02:39,430 Look at that, the math checks out. 46 00:02:39,430 --> 00:02:44,313 Now we're cooking, wow, we've gone over all the essentials of the basic building 47 00:02:44,313 --> 00:02:46,880 blocks of computing and machine language.4347

Can't find what you're looking for?
Get subtitles in any language from opensubtitles.com, and translate them here.