HTML & CSS
388 subscribers
728 photos
1 video
4 files
54 links
πŸ‘Œ HTML & CSS
@html_css_tut

πŸ‘ŒJavaScript
@javascript_tut

πŸ‘Œ PHP
@php_tut


πŸ‘ŒAll About Coding
@codingWithElias
Download Telegram
▢️ Binary to octal conversion
πŸ“ŒExample @Computer_science_course
▢️ Hexadecimal to binary conversion
πŸ“ŒExample @Computer_science_course
▢️ Binary to hexadecimal conversion
πŸ“ŒExample @Computer_science_course
Converting binary fractions to rational numbers (decimal fractions)

πŸ“Œ To convert binary fractions to their decimal equivalents, all we have to do is multiply each bit with its power of 2 position.

πŸ’Ž Note: To convert octal and hexadecimal fractions to their decimal equivalents we follow the same steps
we used above except we change the multiplier(Base) to 8 and 16 respectively.

Converting rational numbers to Baes B fractions

πŸ’ŽTo convert rational numbers to their Base B fraction equivalent we will follow the following steps.

Step 1: Multiply the number after decimal point by B

Step 2: Take number before the decimal point from the result.

Step 3: repeat steps 1 and 2 until there is no decimal point to multiply

@Computer_science_course
Computer Arithmetic

Now that binary numbers are discussed, it’s time to look at how their arithmetic works. But
there are two basic binary number representations so far. Unsigned binary numbers and binary
numbers that are represented using the sign and magnitude method.

@Computer_science_course