Computer Science - Digital Computer Electronics - Discussion

Discussion Forum : Digital Computer Electronics - Section 1 (Q.No. 10)
10.
ASCII and EBCDIC differ in
their efficiency in storing data
the random and sequential access method
the number of bytes used to store characters
their collecting sequences
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
5 comments Page 1 of 1.

Sweety said:   5 years ago
Thank you @Nirbhav.

Srushti said:   8 years ago
Thank you @Nirbhav.

Sidharth Singh said:   9 years ago
Thanks @Nirbhav.

Nirbhav said:   1 decade ago
BCDIC (Extended Binary Coded Decimal Interchange Code) is a character encoding set used by IBM mainframes. Unlike virtually every computer system in the world which uses a variant of ASCII, IBM mainframes and midrange systems such as the AS/400 tend to use a wholly incompatible character set primarily designed for ease of use on punched cards. (For an excellent page on punched cards, see Doug Jones's Punched Card Codes).

EBCDIC uses the full 8 bits available to it, so parity checking cannot be used on an 8 bit system. Also, EBCDIC has a wider range of control characters than ASCII.

Nirbhav said:   1 decade ago
ASCII is the American Standard Code for Information Interchange, also known as ANSI X3.4. There are many variants of this standard, typically to allow different code pages for language encoding, but they all basically follow the same format. ASCII is quite elegant in the way it represents characters, and it is very easy to write code to manipulate upper/lowercase and check for valid data ranges.

ASCII is essentially a 7-bit code which allows the 8th most significant bit (MSB) to be used for error checking, however most modern computer systems tend to use ASCII values of 128 and above for extended character sets.

Post your comments here:

Your comments will be displayed after verification.