IDNStudy.com, ang iyong mapagkukunan para sa mabilis at eksaktong mga sagot. Hanapin ang impormasyon na kailangan mo nang mabilis at madali sa pamamagitan ng aming komprehensibo at eksaktong platform ng tanong at sagot.


Kung sino po marunong please tulong po


Direction: Get the binary value of your first name initial. Show your solution and checking.

use this name - "Brina"

First name :
first name initial :
Convert:__=

Please refer to the table below.​


Kung Sino Po Marunong Please Tulong PoDirection Get The Binary Value Of Your First Name Initial Show Your Solution And Checkinguse This Name BrinaFirst Name Fir class=

Sagot :

First name: Brina

First name Initial : B (ASCII code: 66)

Convert: 66 (Decimal) = 100 0010 (Binary)

How? By diving repeatedly by 2.

66 / 2 = 33 r 0 ---> 0 is the first digit (ones digit) of the binary

continue by getting the previous quotient and dividing by 2 until we reach 0.

33 / 2 = 16 r 1 ---> 1 is the second digit (tens digit)

16 / 2 = 8 r 0 ---> 0 is the third digit

8 / 2 = 4 r 0 ---> 0 is the 4th digit

4 / 2 = 2 r 0 ---> 0 is the 5th digit

2 / 2 = 1 r 0 ---> 0 is the 6th digit

1 / 2 = 0 r 1 ---> Now stop here since 1 is lesser than 2. Then ofcourse because the quotient is 0. The remainder 1 is our 7th digit.

Then join them together: 1 0 0 0 0 1 0