answersLogoWhite

0


Best Answer

z= 011001

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How are keyboards letters represented as binary data?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Computer Science

How is data represented in a computer?

Computers work with a binary number system that consists of only two digits - zero and one. Inside the computer binary number is represented by an electrical pulse. One means a pulse of electricity and zero means no pulse. All the data entered into computers is first converted into the binary number system. One digit in binary number system is called bit and combination of eight bits is called byte. A byte is the basic unit that is used to represent the alphabetic, numeric and alphanumeric data. Data is represented inside a computer as a series of on and off pulses. Humans think of those pulses in terms of a binary-based numbering system. Data is the combination of characters, numbers and symbols collected for a specific purpose. Data is divided into three types; alphabetic data, numeric data and alphanumeric data. Numeric data consist of ten digits 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, two signs + and - and decimal point . There are different types of number system that are used to represent numeric data. These number systems are decimal number system, binary number system, octal number system and hexadecimal number system. Alphabetic data is used to represent 26 alphabetic. It consist of capital letters from A to Z, small letters from a to z and blank space. Alphabetic data is also called nonnumerical data. Alphanumeric data used to represent alphabetic data, numeric data, special character and symbols.


What would you call a device that works with binary data?

Digital Data is data that is stored in binary, and a Digital Device is any device that works with binary data


Expansion card that translates binary data into images?

A video card or video adapter translates binary data into images.


How transistors can represent binary data?

they can't


How do transistors represent binary data?

they can't

Related questions

How is letter a represented in binary number?

Find out how are keyboard letters represented as binary data.


What type of form for storing data is represented by 0s and 1's?

Binary.


What is data codes and internal representation in computer?

Data is internally represented in binary form in what we call machine language.


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)]


How can binary patterns be used to represent data?

Data is represented in bytes, which are a set of 8 bits which are either 0 or 1. So all data is in groups of 0's and 1's which each represent something, like a character. For example, all Capital letters are 010----- for example 'V' is 01010110 and all lowercase letters are 011----- for example 'v' is 01110110. If you know how to count in binary, you will notice that v is the 22nd letter and 10110 is 2+4+16=22.


How can a binary tree be represented in a computer memory?

A binary tree is a tree that has at most two child node. It contain a data field, a pointer to the left and a pointer to the right child.


How data and instruction are represented in binary inside the computer?

Every microprocessor architecture has a specific set of instructions that are embedded into the processor itself and each instruction correspond to a specific opcode. Data and instructions in memory are represented in an address format.


What is binary data transmitted on?

Binary Data is transmitted on Data Buses.


Is digital data for wireless communications represented in the same way as standard computer data using the two binary digits 0 and 1?

that's correct.the binary digits are transformed into radio waves then sent.the receiving process does the opposite: radio waves are received and transformed into binary digits


How is data represented in a computer?

Computers work with a binary number system that consists of only two digits - zero and one. Inside the computer binary number is represented by an electrical pulse. One means a pulse of electricity and zero means no pulse. All the data entered into computers is first converted into the binary number system. One digit in binary number system is called bit and combination of eight bits is called byte. A byte is the basic unit that is used to represent the alphabetic, numeric and alphanumeric data. Data is represented inside a computer as a series of on and off pulses. Humans think of those pulses in terms of a binary-based numbering system. Data is the combination of characters, numbers and symbols collected for a specific purpose. Data is divided into three types; alphabetic data, numeric data and alphanumeric data. Numeric data consist of ten digits 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, two signs + and - and decimal point . There are different types of number system that are used to represent numeric data. These number systems are decimal number system, binary number system, octal number system and hexadecimal number system. Alphabetic data is used to represent 26 alphabetic. It consist of capital letters from A to Z, small letters from a to z and blank space. Alphabetic data is also called nonnumerical data. Alphanumeric data used to represent alphabetic data, numeric data, special character and symbols.


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 definition of datatypes in programming?

A data type defines how data is represented. All data is obviously represented by a sequence of binary values, however, the data type determines how that value is to be interpreted by the language compiler. Object oriented programming languages use classes to define data types, which not only defines the representation of data but also which operations are valid for the type.