The major problem with BCD code is that only 64 (2 to the power 6) different charactor can be represented in it.
this is not sufficient for providing decimal numbers (10), lower case letters (26), and large number of other special characters (28+)
Rajesh Rajput
se.rajesh.rajput@gmail.com
...And EBCDIC was obsoleted by ASCII because EBCDIC did not use continuous coding (all the letters of the alphabet in increasing binary values), and because IBM made it difficult for others to use.
Extended binary coded decimal interchange code
in EBCDIC: 11001000, 10000101, 10010011, 10010011 10010110 in ASCII: 1001000, 1100101, 1101100, 1101100, 1101111 in Unicode: 0000 0000 0100 1000, 0000 0000 0110 0101, 0000 0000 0110 1100, 0000 0000 0110 1100, 0000 0000 0110 1111
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.
BCD is used for binary output on devices that only display decimal numbers.
That would depend on which computer character code you want to use, there have been thousands of them. The most current is Unicode an extension of ASCII. Unicode can support every living language on earth and many dead ones too. However it has multiple coding standards.Some other now largely considered obsolete computer character codes are EBCDIC (still used on come IBM mainframe computers), FIELDATA, BCDIC (used by IBM before they developed EBCDIC in 1964), CDC Display Code, Hollerith punch card code, BAUDOT, etc. Some computers (e.g. IBM 1401, IBM 650, IBM 1620) actually used different character codes in their internal memory than they used for input/output.Computer character codes before the 1960s generally were limited to capital letters only (these were typically 6 bit codes, not the 8 bit that IBM introduced with EBCDIC in 1964 on their System 360 or the new 7 bit standard teletype code ASCII introduced just before that and soon adopted by computer manufacturers other than IBM).In ASCII the word Tina is the following Hexadecimal bytes (you can convert to binary):T = 54Hi = 69Hn = 6EHa = 61Hin EBCDIC the word Tina is the following Hexadecimal bytes (you can convert to binary):T = E3Hi = 89Hn = 95Ha = 81H
extended binary coded decimal interchange code
Extended binary coded decimal interchange code
Extended Binary Coded Decimal Interchange Code
In EBCDIC (Extended Binary Coded Decimal Interchange Code), the code for the number 1 is represented as the hexadecimal value C1. In binary, this corresponds to 11000001. EBCDIC is primarily used in IBM mainframes and other legacy systems for text encoding.
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..
EBCDIC is Extended Binary Coded Decimal Interchange Code. It was the character encoding scheme developed and used by IBM. EBCDIC is completely overshadowed by ASCII and ASCII's big brother, Unicode. EBCDIC is very difficult to use, as the alphabet is non-contiguous and the encoding makes no logical sense.
EBCIDIC (Extended BCD Interchange Code)Unicode
The Extended Binary Coded Decimal Interchange Code (EBCDIC)
The acronym EBCDIC means: Extended Binary Coded Decimal Interchange Code. The EBCDIC is an 8-bit character encoding system used on IBM systems that stems from the old punch card systems used in the 1950's and early 1960's.
No, EBCDIC (Extended Binary Coded Decimal Interchange Code) is not the most widely used coding system. The most prevalent character encoding today is ASCII (American Standard Code for Information Interchange) and its extended versions, as well as Unicode, which supports a vast range of characters from different languages. EBCDIC is primarily used in mainframe environments, particularly associated with IBM systems, but its usage is much more limited compared to ASCII and Unicode.
One advantage of EBCDIC (Extended Binary Coded Decimal Interchange Code) is that it supports a wider range of characters compared to ASCII, including special characters used in IBM mainframe systems. EBCDIC is often still used in legacy systems and environments where compatibility with older technologies is important.
what is weighted codes: The decimal value of a code is obtained summing up the positional values. weghted binary code s are those which obey positional weighting principle. each position of number represents a specific weight. There are millions of weighted code The most common one is 8421 Non weighted codes: This codes are not positionaly weghted. each position with in the binary no is not assgned to afixed value.Examples of nonweghted code is ASCCI, GREY CODE, EBCDIC CODE etc