answersLogoWhite

0


Best Answer

24.6391 is represented in IEEE real*4 (32-bit real number) as:

0x41c51ce0 (big-endian)

0xe01cc541 (little-endian)

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Give the ASCII representation for the numeral 24.6391 in hexa decimal?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is packed decimal?

Packed decimal is a method used in computing to store more in less space. A bit of theory here. Characters are stored in binary in their ASCII representation, such that the number 1 = ascii 49 (decimal). Packed decimal means you can store two numbers (numbers only) in the same space, so that ascii 49 = numbers 4 and 9. There is overhead so it is always a trade off between space and computing. And storage is cheap these days


What is the ASCII code in binary and in decimal for the letter b?

SymbolDecimalBinaryA6501000001B6601000010C6701000011D6801000100E6901000101F7001000110G7101000111H7201001000I7301001001J7401001010K7501001011L7601001100M7701001101N7801001110O7901001111P8001010000Q8101010001R8201010010S8301010011T8401010100U8501010101V8601010110W8701010111X8801011000Y8901011001Z9001011010SymbolDecimalBinarya9701100001b9801100010c9901100011d10001100100e10101100101f10201100110g10301100111h10401101000i10501101001j10601101010k10701101011l10801101100m10901101101n11001101110o11101101111p11201110000q11301110001r11401110010s11501110011t11601110100u11701110101v11801110110w11901110111x12001111000y12101111001z12201111010These is all the alphabet turned into ASCII first decimal then ASCII. Hope you find it useful.


How do you spell Quinn in binary code?

In binary: 10100010 11101010 11010010 11011100 11011100 00000000 In hexadecimal: 0x5175696E6E00 10100010 = 0x51 = 'Q' (ASCII character code 81 decimal) 11101010 = 0x75 = 'u' (ASCII character code 117 decimal) 11010010 = 0x69 = 'i' (ASCII character code 105 decimal) 11011100 = 0x6E = 'n' (ASCII character code 110 decimal) 11011100 = 0x6E = 'n' (ASCII character code 110 decimal) 11011100 = 0x00 = 0 (ASCII character code 0 decimal - null-terminator)


What is the use of ASCII in computer system?

ASCII is the representation of Binary Digits (0 & 1s) which are interpreted by Processor as meaningful data.


What is the ASCII number for b?

Decimal 98


What is the ASCII character '?

It is the apostrophe or single quote character ('). It has the ASCII code 0x27 (39 decimal).


What is the ASCII code in binary and decimal for lower case x?

Lower case 'x' is 120 (decimal) or 1111000 (binary) in the ASCII character table.


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

ASCII for K is 0x4b = 75 = 0100 1011


What is the decimal value of the ASCII letter K?

The ASCII value of capital K is 75. For a small k it is 107.


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

Binary- 01100111 Decimal Value- 103


What is the ASCII code for letter D?

The ASCII code for the letter D is 68 in decimal, 0x44 in hexadecimal/Unicode.


What is the binary equivalent of the word Network using ASCII encoding?

ASCII character array (including null-terminator): {'N','e','t','w','o','r','k','\0'} ASCII character codes (decimal): {78,101,116,119,111,114,107,0} ASCII character codes (octal): {4,7,1,4,5,3,5,0,7,3,5,5,7,3,4,4,6,5,4,0,0} ASCII character codes (hexadecimal): {4E,65,74,77,6F,72,6B,00} ASCII character codes (binary): {01001110,01100101,01110100,01110111,01101111,01110010,01101011,00000000} When treated as a 64-bit value, the ASCII-encoded word "Network" has the decimal value 5,649,049,363,925,854,976.