answersLogoWhite

0


Best Answer

It is -F.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the hexadecimal value of -15?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the decimal value of the largest digit in hexadecimal numbering system?

15


In hexadecimal what decimal value does the letter a represent?

These are the hexadecimal digits and their decimal equivalents: 0 = 0 1 = 1 ... 9 = 9 A = 10 B = 11 ... F = 15


What is 999910 in hexadecimal?

The value in hexadecimal of the decimal number 999910 is F41E6.


What is the hexadecimal value of-15?

F if excluding the (-) sign in it. else it's 2's compliment of F. F1


What is DCE and what is its hexadecimal value in decimal?

DCE means: Data Carrier Equipment Hexadecimal value in decimal: 3192


What is 15 in hexadecimal number system represented by?

15 in the hexadecimal number system is represented by 21 in the decimal system.


What is the decimal value of the hexadecimal value C?

12.


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(); } }


What is the hexadecimal value of white?

It is FFFFFF.


What is the answer of 111010101?

Decimal Value: 469 Hexadecimal Value: 1D5


What is the uppercase letter that has a hexadecimal value if 41?

A


What is the hexadecimal value for decimal 26?

1A