Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lære Decipher Binary Number | Binary Numeral System
Numeral Systems 101
course content

Kursusindhold

Numeral Systems 101

Numeral Systems 101

1. Binary Numeral System
2. Octal Numeral system
3. Hexadecimal Numeral system
4. Revelation

book
Decipher Binary Number

Opgave

Swipe to start coding

So far, so good 😃 Convert binary code to the decimal one. Fill the gaps and follow the algorithm. The result of your manipulations is a specific number in math .

  1. Create variable decimal_number for storing converted decimal number and assign 0 to it.
  2. Print the binary number.
  3. Define the variable power and assign 0 to it.
  4. Define the loop that executes till the binary number is 0.
  5. Count the remainder of division binary_number by 10 and assign it to the variable last_digit.
  6. Multiply last_digit by the 2 raised to the relevant power.
  7. Add the result to the decimal_number.
  8. Decrease binary_number using integer division by 10.
  9. Increase power by 1.
  10. Print the decimal number.

Løsning

Note

You received one of the Armstrong number: the sum of the cubes of its own digits, let me explain this: 370 = 3^3 + 7^3 + 0^3 = 27 + 343 + 0 = 370

Switch to desktopSkift til skrivebord for at øve i den virkelige verdenFortsæt der, hvor du er, med en af nedenstående muligheder
Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 1. Kapitel 3
toggle bottom row

book
Decipher Binary Number

Opgave

Swipe to start coding

So far, so good 😃 Convert binary code to the decimal one. Fill the gaps and follow the algorithm. The result of your manipulations is a specific number in math .

  1. Create variable decimal_number for storing converted decimal number and assign 0 to it.
  2. Print the binary number.
  3. Define the variable power and assign 0 to it.
  4. Define the loop that executes till the binary number is 0.
  5. Count the remainder of division binary_number by 10 and assign it to the variable last_digit.
  6. Multiply last_digit by the 2 raised to the relevant power.
  7. Add the result to the decimal_number.
  8. Decrease binary_number using integer division by 10.
  9. Increase power by 1.
  10. Print the decimal number.

Løsning

Note

You received one of the Armstrong number: the sum of the cubes of its own digits, let me explain this: 370 = 3^3 + 7^3 + 0^3 = 27 + 343 + 0 = 370

Switch to desktopSkift til skrivebord for at øve i den virkelige verdenFortsæt der, hvor du er, med en af nedenstående muligheder
Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 1. Kapitel 3
Switch to desktopSkift til skrivebord for at øve i den virkelige verdenFortsæt der, hvor du er, med en af nedenstående muligheder
Vi beklager, at noget gik galt. Hvad skete der?
some-alt