answersLogoWhite

0


Best Answer

0111 0110

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Convert the following decimal values to binary values 118?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

How do you convert binary decimal values into hexadecimal value?

"Binary decimal" is a contradiction in terms. Decimal has a base of 10, binary a base of 2 and hexadecimal a base of 16.The way I would do it is:If you have a value in binary then convert this to a decimal value. Then convert it to hexadecimal remembering that the number will now be comprised by the following (where x represents the digit):The first digit (from right to left) will equal x * 160, the next will equal x * 161 and so forth...An example:So in binary 11111 = (1 * 20) + (1 * 21) + (1 * 22) + (1 * 23) + (1 * 24) = 1 + 2 + 4 + 8 + 16 = 31 (in decimal).To write this in hexadecimal, 31 would be (15 * 160) + (1 * 161) = 1FNote: A tip - If you are using a Windows operating system, then if you go to the Start menu and choose search/run and type in "calc" or "calculator" then you will get a virtual calculator to use. If you choose "programmer" from the View menu and then choose the "Bin" button and type in a binary value and then choose the "Hex" button then the binary value will be converted to hexadecimal. (The above certainly applies for Windows 7).


What are the binary and decimal values for ASCII ltter K?

ASCII for K is 0x4b = 75 = 0100 1011


Why binary numbers need more places for counting?

Since a binary digit has only two possible values, each digit bears less information than in decimal, where each digit can have ten different values.


How many values are possible using a single binary digit?

Answer: 2The values are 0 or 1.


What is the number 48 as a binary number?

The decimal number in binary is the six-digit number 110000. The digits in a binary number are exponents of 2 rather than 10, so that for a six-digit number in binary, the digit places represent 32, 16, 8, 4, 2, 1 instead of increasing values of 10. 110000 = 32 +16 + (0x8) + (0x4) + (0x2) + (0x1) = 48

Related questions

What are the binary and decimal values of the ASCII letter g?

Binary- 01100111 Decimal Value- 103


Which of the following is true about 1 bit Can represent decimal values 0 and 9 Can be used to represent one character in the lowercase English alphabet Represents one binary digit Four binary?

Neither of the following are true about 1 bit, it can not represent decimal values 0 and 9 nor can it be used to represent one character in the lowercase English alphabet and one binary digit four binary. A true statement would be that 1 bit is represented by the decimal values 0 or 1.


What is the binary number of the decimal value 181?

The binary values is 10110101.


What is the binary values of the decimal number 15?

It is 1111.


Applications of bcd to binary code cnvertor?

Many non-integral values, such as decimal 0.2, have an infinite place-value representation in binary (.001100110011...) but have a finite place-value in binary-coded decimal (0.0010)[bcd]. Consequently a system based on binary-coded decimal representations of decimal fractions avoids errors representing and calculating such values. Rounding at a decimal digit boundary is simpler in BCD. Addition and subtraction in decimal does not require rounding.


How do you convert binary decimal values into hexadecimal value?

"Binary decimal" is a contradiction in terms. Decimal has a base of 10, binary a base of 2 and hexadecimal a base of 16.The way I would do it is:If you have a value in binary then convert this to a decimal value. Then convert it to hexadecimal remembering that the number will now be comprised by the following (where x represents the digit):The first digit (from right to left) will equal x * 160, the next will equal x * 161 and so forth...An example:So in binary 11111 = (1 * 20) + (1 * 21) + (1 * 22) + (1 * 23) + (1 * 24) = 1 + 2 + 4 + 8 + 16 = 31 (in decimal).To write this in hexadecimal, 31 would be (15 * 160) + (1 * 161) = 1FNote: A tip - If you are using a Windows operating system, then if you go to the Start menu and choose search/run and type in "calc" or "calculator" then you will get a virtual calculator to use. If you choose "programmer" from the View menu and then choose the "Bin" button and type in a binary value and then choose the "Hex" button then the binary value will be converted to hexadecimal. (The above certainly applies for Windows 7).


What are the procedure involved in calculating ip address?

The standard written format for an IP address is as 4 bytes written as their decimal values separated by periods. Just convert each decimal value to a binary byte and append them to make a 32 bit number. Reverse that to convert a 32 bit number to 4 decimal bytes separated by periods.


Why does a decimal value waste memory space?

Decimal (more formally, binary coded decimal) values store numeric information as digits encoded using the four bit binary equivalents: 0 (0000) to 9 (1001). That means a single byte can hold values between 0 and 99. But simply using the same byte to hold a binary value will yield values between 0 and 255 (or –128 and +127).


What are the binary and decimal values for ASCII ltter K?

ASCII for K is 0x4b = 75 = 0100 1011


How do you convert 0.50 percent to a decimal?

You divide percent values by 100 to get the decimal equivalent: 0.50% / 100 = 0.005


Why binary numbers need more places for counting?

Since a binary digit has only two possible values, each digit bears less information than in decimal, where each digit can have ten different values.


What is the binary number equivalent to the decimal number 150?

Here's an easy way to convert decimal to binary. 150 = 75x2 + 0 75 = 37x2 + 1 37 = 18x2 + 1 18 = 9x2 + 0 9 = 4x2 + 1 4 = 2x2 + 0 2 = 1x2 + 0 1 = 0x2 + 1 Then place the 'remainder' values in order from bottom to top. 150 (decimal) = 10010110 (binary) This equates to, 27 + 24 + 22 + 21 = 128 + 16 + 4 + 2 = 150