answersLogoWhite

0


Best Answer

Ascii codes is uses 7 bit binary code to reprsent each character

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which code uses 7 bit binary code to reprent each characters?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is a EBCDIC?

EBCDIC code stands for extended binary coded decimal interchange code....it is an 8 bit code and can provide 256 different characters..it is used on ibm mainframes and on other large computers.. EBCDIC code stands for extended binary coded decimal interchange code....it is an 8 bit code and can provide 256 different characters..it is used on ibm mainframes and on other large computers..


What are weighted binary codes?

It is that type of binary code where weights are assigned to each symbol position in the code word.


How is digital data represented by the binary code?

The Binary code represents all data in 0s and 1s by using a combination of these. Each number system and digital data like characters and other symbols can be represented in binary by a common conversion method for each system. Example: Decimal number 12 is binary number 1100. this is obtained as [1*(2^3) + 1*(2^2) + 0*(2^1) + 0*(2^0)]


Why are there 8 digits in each binary code?

the answer is 8x0/1


Binary to hexadecimal to binary conversion?

Each 4 bits of binary can make 1 hexadecimal digit. There are 16 hexadecimal characters including zero. This can be shown by the equation 2^4 = 16.


How are characters sets and fonts represented in a computer system?

All code and data in a computer system is represented in binary. Characters are represented in a few different ways depending on the language. For the English language, the ASCII character set is perhaps the most common. Using this character set, normally each character is represented by 1 byte (8 bits (8 binary digits)). As an example, a value of 65 is used for A which in binary is 01000001.


What is the Binary code of 18?

10010=18 the places held for each 1 and 0 in binary are 16,8,4,2,1 so 10010 is 16+2 = 18


How many hexadecimals must be used for 128 bit WEP encryption?

Each of the 64 hexadecimal characters encodes 4 bits of binary data, so the entire 64 characters is equivalent to 256 binary bits - which is the actual binary key length used by the WiFi WPA pre-shared key (PSK).


How assembly language communicate with the CPU of any computer devices?

Assembly language code is the lowest-level form of programming before Machine code (binary), and each command in Assembler code directly references binary commands which tell the CPU what to do.


What language consists of only two digits 0 and 1?

Binary code represents text using the binary number system's two digits 1 and 0. The code assigns a bit string to each symbol or instruction. Binary is commonly used for encoding data.


What does Binary code use to create a type of Morse code that the computer understands?

Binary code is the native language of the machine; no translation is necessary. However, the binary encoded data may be abstract, high-level instruction code (program source code) that must be compiled or interpreted in order to produce the required machine code the computer understands. A software program is used to perform this translation; each programming language provides its own compiler and/or interpreter specific to each machine type and operating system (the platform).


What does 1011 mean in binary code?

1011 in binary code is 11 in 'ordinary' (decimal) code. In the table, the top row shows the value of each digit, which depends on its position. The row below that is our binary number. ----------------- | 8 | 4 | 2 | 1 | ----------------- | 1 | 0 | 1 | 1 | ----------------- So the value of 1011 is 8 + 0 + 2 + 1 = 11 See the related link, Binary Numbers, below.