answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Which hexadecimal symbol has the binary value?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What hexadecimal symbol has the binary value of 1110?

It is E.


What hexadecimal symbol has the binary value 1110?

It is EIt is EIt is EIt is E


What is the hexadecimal symbol to the binary number 1010?

Binary(1010) = Hex(A)


What is the hexadecimal symbol equivalnt to the binary number 1010?

It is A.


What numerical value in hexadecimal is equivalent to the binary number 1101111010101101?

1101111010101101 in binary is equal to DEAD in hexadecimal.


What is the 4 bit binary for the hexadecimal symbol C?

1100


What is the 4-bit binary number associated with the hexadecimal symbol?

It is 1100.


What is the hexadecimal value of the binary numbers 110011101111?

It is CEF0.


What is the binary value is equivalent to the hexadecimal number C43A?

1100010000111010


What is the hexadecimal symbol equivalent to binary number 1010?

1010 = A


Hexadecimal equivalent to the binary value 1110?

1110 = E


Write a program that prints a table of the binary, octal and hexadecimal equivalents of the decimal numbers in the range 1 through 256?

import java.util.Scanner; public class NumberSystem { public void displayConversion() { Scanner input = new Scanner(System.in); System.out.printf("%-20s%-20s%-20s%-20s\n", "Decimal", "Binary", "Octal", "Hexadecimal"); for ( int i = 1; i <= 256; i++ ) { String binary = Integer.toBinaryString(i); String octal = Integer.toOctalString(i); String hexadecimal = Integer.toHexString(i); System.out.format("%-20d%-20s%-20s%-20s\n", i, binary, octal, hexadecimal); } } // returns a string representation of the decimal number in binary public String toBinaryString( int dec ) { String binary = " "; while (dec >= 1 ) { int value = dec % 2; binary = value + binary; dec /= 2; } return binary; } //returns a string representation of the number in octal public String toOctalString( int dec ) { String octal = " "; while ( dec >= 1 ) { int value = dec % 8; octal = value + octal; dec /= 8; } return octal; } public String toHexString( int dec ) { String hexadecimal = " "; while ( dec >= 1 ) { int value = dec % 16; switch (value) { case 10: hexadecimal = "A" + hexadecimal; break; case 11: hexadecimal = "B" + hexadecimal; break; case 12: hexadecimal = "C" + hexadecimal; break; case 13: hexadecimal = "D" + hexadecimal; break; case 14: hexadecimal = "E" + hexadecimal; break; case 15: hexadecimal = "F" + hexadecimal; break; default: hexadecimal = value + hexadecimal; break; } dec /= 16; } return hexadecimal; } public static void main( String args[]) { NumberSystem apps = new NumberSystem(); apps.displayConversion(); } }