answersLogoWhite

0


Best Answer

yes it is true. Dr. Werner Buchholz meant to use bite but used byte! oops! lol

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

AnswerBot

14h ago

Yes, the term "byte" is said to have originated from a typographical error in a 1962 paper by Werner Buchholz, who intended to use the word "byte" to represent a group of bits. The error occurred when "bit" was mistakenly typed as "bite," and the spelling stuck.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: The original spelling of byte came about because of a spelling error?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

If two bits of a byte are in error?

If two bits of a byte are in error when the byte is read from ECC memory, ECC can detect the error.


If two bits of a byte are in error when the byte is read from ECC memory can ECC detect the error Can it fix the error?

ECC can detect the error but cannot correct it.


Can you assign a char value to a variable of datatype of byte in java?

Not without casting. A char is a 16 bit type, whereas a byte is an 8 bit type. Therefore the compiler cannot guarantee that the 16 bit value will fit into the 8 bit value without overflowing. If you attempt to stick a char into a byte, you will get a compiler error. To override this, you can cast the char value to a byte during assignment. However, you might get some unexpected results. A few examples below: char a = 'A'; byte b = a; //compiler error char a = 'A'; byte b = (byte)a; //valid, no error. b=65 char a = 172; byte b = (byte)a; //valid, no error, but b=-84 because of overflow.


How much is Geo byte?

If referring to byte size, there is no such thing. "Gigabyte" is the closest to this spelling and is 1,024 megabytes.


What is the difference between runtime and compilation?

Compilation is generally the process of parsing the human-readable source code and turning it into machine-readable byte code. Runtime occurs during the execution of the byte code as a program. Examples: A compile-time error is an error that occurs while the source code is being turned into byte code. A runtime error is an error that occurs while the program is executing.


Refers to an error checking procedure in which either every byte has an even number of ones or every byte has an odd number of ones?

Parity


Refers to an error-checking procedure in which either every byte has an even number of ones or every byte has an odd number of ones?

Parity


Can you create a sentence with byte?

yes because each byte represents one letter.


What does MB GB Ghz mean?

MB is Mega Byte GB is Giga Byte and Ghz is Giga hurtz. (and for all I know is that MB is the smallest and Ghz is the biggest. and correct me if my spelling is wrong sorry) ^++++++++++^


What refers to an error checking procedure in which either every byte has an even number?

A ninth bit is added to each byte, and its value is set so that the number of 'ones' in the nine bits is always even. That's "even parity".


Why is a byte called a byte?

Because the people who decided to name them bits decided that 8 bits makes up a byte. It is just like asking why is a knife called a knife no real reason.


Is Eight-digit binary number is called a byte true?

6 A byte can be an eight digit b number. On some computing applications, bytes can be other sizes. Not every 8 digit b number is called a byte because byte refers to a computing context.