answersLogoWhite

0


Best Answer

Divide 40 by 2, which is the base of binary, and then divide the quotient obtained by 2. Continue the process as long as the quotient obtained in each case is greater than 1.

40 = 2 x 20 + 0

20 = 2 x 10 + 0

10 = 2 x 5 + 0

5 = 2 x 2 + 1

2 = 2 x 1 + 0(We stop here as quotient is 1)

Remainder obtained in first step is given the lowest priority and priority goes on increasing with each step.

And the binary equivalent is obtained as:

Write the quotient obtained in last step followed by the remainder according to the priority: 101000.

Thus, binary equivalent is 101000.

User Avatar

Wiki User

12y ago

Still curious? Ask our experts.

Chat with our AI personalities

BeauBeau
You're doing better than you think!
Chat with Beau
JudyJudy
Simplicity is my specialty.
Chat with Judy
ProfessorProfessor
I will give you the most educated answer.
Chat with Professor

Add your answer:

Earn +20 pts
Q: What is binary for 40?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the binary code 10101010?

The binary code 10101010 represents the decimal number 170. In binary code, each digit is a power of 2, starting from the right with 2^0. Therefore, the binary digit 1 in the rightmost position represents 2^0, which is 1. Adding up the values of each digit in the binary code 10101010 gives 128 + 32 + 8 + 2 = 170 in decimal form.


What is the value for hex value 20?

20 hex = 32 decimal or 100000 binary or 40 octal.


How is a binary used?

Binary what? Binary numbers? Binary stars? Binary fission?


What is 9 over 29 over 40 written in decimal?

Division is not associative so the question is ambiguous. Assuming the binary operations are evaluated left to right, the answer is (9/29)/40 = 0.0077586 (approx).


Was binary stands for binary digits?

No, binary is a number system.A binary digit is called a bit.


How many different binary trees and binary?

Infinite (and binary).


What is the use of binary?

Binary trees are commonly used to implement binary search tree and binary heaps.


Prokaryotic cells reproduce by a process called?

binary fission


What is the binary number of 10?

The Binary for ten in 8-bit binary is: 00001010


What is the sum of the binary numbers?

The sum of binary numbers is also a binary number.


What is the binary number for decimal 191?

It is 10111111 in binary. Try a search for '191 to binary'.


Is a full binary tree the same as a complete binary tree, or are there differences between the two structures?

A full binary tree is a type of binary tree where each node has either 0 or 2 children. A complete binary tree is a binary tree where all levels are fully filled except possibly for the last level, which is filled from left to right. So, a full binary tree can be a complete binary tree, but not all complete binary trees are full binary trees.