answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How numbers are represented on the computer using ascii?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How is text represented in main computer memory?

By using a binary number called ASCII code


How are graphics data represented on a computer system?

The graphics data include audio,video and pictures represented in computer in the form of 0's and 1's by using ASCII 8 bits code.


How do you find the ASCII value of numbers greater than 9?

You can find the ASCII value of numbers greater than 9 using the following functions: std::to_string or boost::lexical_cast or std::ostringstream depending on the compiler that you are using.


Why may it be an advantage if your computer uses ASCII to store text?

Using ASCII, the computer can hold much more text, and this way you can save more on the computer without the computer slowing down.


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 a computer middle finger?

Keyboard speaking its K and I or D and R. You can make it using ASCII art.


What is different about how metric numbers are represented?

Metric numbers are represented using decimal places rather than fractions usually.


What are the two popular coding schemes used in computer processing?

There are a number of popular coding schemes used in computer processing but ASCII and EBCDIC are the most well known. Both are 8-bit codes using binary numbers to represent data.


Is Data created by a computer system using the ASCII coding scheme can be directly accessed by another computer system using different coding schemes?

Most text encodings are supersets of 7-bit ascii, so in short yes, valid ascii is also UTF8/16, lantin-1 and most other western text encodings, but ascii is most valuable as a data-encoding because it is independent of the endianness of the computer - it takes less space to store most data in binary, but the bit patterns for the same data will vary from computer to computer, making the data less portable


Define binary coding scheme in computer system?

A binary coding scheme is a method used for representing all of the digits, letters, special characters, and control characters available to a digital computer using groups of 0s and 1s. The two coding schemes in widest use are American Standard Code for Information Interchange (ASCII) and Extended Binary Coded Decimal Interchange Code (EBCDIC). Here are some examples of how the characters A, 7, and $ would be represented in ASCII and EBCIDIC: ASCII: A=01000001, 7= 00110111, $=00100100 EBCIDIC: A=11000001, 7=11110111, $=01011011


Show how your surname would be stored using ASCII code?

Stored? It would not be stored as ASCII -- ASCII (American Standard Code for Information Interchange) is in common use in the US (EBCDIC - Extended Binary Coded Decimal Interchange Code is another type of ASCII and is used in many European countries.)My name is, for example, Bill TheCat - TheCat is my surname and is represented (not stored) in ASCII as "TheCat". Computers store data as 0s and 1s (in BINARY, which is not the same as EBCDIC) format.


How does a computers process binary digits into keyboard characters?

Chracters are represented using binary digit combinations. For example the ASCII American Standard Code for Information Interchange is one such encoding.