UrbanPro

Learn C Language from the Best Tutors

  • Affordable fees
  • 1-1 or Group class
  • Flexible Timings
  • Verified Tutors

Search in

What is meant by high-order and low-order bytes?

Asked by Last Modified  

Follow 2
Answer

Please enter your answer

Lower order and higher-order bytes are the terms used while computing calculations in a programming language. Usually, numbers are written from left to right. The left is the most significant bit, and it is written first. For example, if we consider your paycheck, then you would be happier if the...
read more

Lower order and higher-order bytes are the terms used while computing calculations in a programming language. Usually, numbers are written from left to right. The left is the most significant bit, and it is written first. 

 

For example, if we consider your paycheck, then you would be happier if the number the first digit increases instead of the last digit. This is what is referred to as "significance" of a digit. 

The bits present in computer memory are written usually with a base 2 (for binary, the base is considered as 2). So, the least significant bit is represented as one. The next bit is represented as two or 2'1 and the next one as 2'2'1 and so on..

 

For example, if we consider 2 bytes of memory, which represents a 16-bit number, then one byte will hold at least eight significant bits, and the other byte will hold the most significant 8 bits. 

The byte that contains the most significant 8 bits is called the higher-order byte and the one that contains the least significant bits is called the higher-order byte. 

 

read less
Comments

Professional Tutor with 15 years of experience.

In Simple way : To understand High/Low-order bytes/bits, consider int as an example. int is 4 bytes in length. The 1st byte is the low-order byte, whereas the 4th byte is the high-order byte. This is the same for bits. For example, still using the int example, the 1st bit is the low-order bit, whereas...
read more
In Simple way : To understand High/Low-order bytes/bits, consider int as an example. int is 4 bytes in length. The 1st byte is the low-order byte, whereas the 4th byte is the high-order byte. This is the same for bits. For example, still using the int example, the 1st bit is the low-order bit, whereas the 32nd bit is the high-order bit. One Nibble is 4 bit's in length. 2 nibbles make a byte. The lower-order nibble is the first 4 bits. The last 4 bits is the higher-order nibble. read less
Comments

We generally write numbers from left to right, with the most significant digit first. To understand what is meant by the "significance" of a digit, think of how much happier you would be if the first digit of your paycheck was increased by one compared to the last digit being increased by one. The bits...
read more
We generally write numbers from left to right, with the most significant digit first. To understand what is meant by the "significance" of a digit, think of how much happier you would be if the first digit of your paycheck was increased by one compared to the last digit being increased by one. The bits in a byte of computer memory can be considered digits of a number written in base 2. That means the least significant bit represents one, the next bit represents 2´1, or 2, the next bit represents 2´2´1, or 4, and so on. If you consider two bytes of memory as representing a single 16-bit number, one byte will hold the least significant 8 bits, and the other will hold the most significant 8 bits. Figure shows the bits arranged into two bytes. The byte holding the least significant 8 bits is called the least significant byte, or low-order byte. The byte containing the most significant 8 bits is the most significant byte, or high- order byte. read less
Comments

This depends on processors sapose iam using intel processors which follows low order motrolla follows high order technically we colled as little enidian big enidian this is like storage types
Comments

VLSI & Embedded tutor

in binary number system 8 bits are taken as a byte. in 0ne byte the first 4-bits from MSB side are treated as higher order bytes and second half that is 4-bits from LSB side are taken as Lower order.
Comments

Software Professional Trainer with 26+ years of Experience in Software Design and Development

The least significant byte is low order byte and most significant byte is high order byte.
Comments

C/C++/SQL/Datastructures/Database/Excel

The significant bytes. Left ones are high significant, right ones are low
Comments

Many data types need more than 1 bytes to store, example int needs 4 bytes, out of these 4 bytes (for the int) the byte which stores the least significant part of the int is called low-order and the one which stores the most significant part is called high-order. The order in which these are stored depends...
read more
Many data types need more than 1 bytes to store, example int needs 4 bytes, out of these 4 bytes (for the int) the byte which stores the least significant part of the int is called low-order and the one which stores the most significant part is called high-order. The order in which these are stored depends on your CPU architecture and differs from one architecture to other. These are also called big endian and little endian (and many more combinations) and plays significant role when transferring binary data from one system to other with different hardware architecture. read less
Comments

The low byte is the byte that holds the least significant part of an integer. If you think in terms of writing a bit pattern on paper, the low byte is the rightmost eight bits. A short holds a 16-bit pattern .
Comments

View 7 more Answers

Related Questions

What is the use of getch(); in the end of c program
getch() is used to hold the console(output) window on the screen after the whole program run is completed till the user enters a key from keyboard. However, the character entered is not displayed on screen....
Priyanka
What is the benefit of using an enum rather than a #define constant?
The use of an enumeration constant (enum) has many advantages over using the traditional symbolic constant style of #define. These advantages include a lower maintenance requirement, improved program readability,...
Basundhara
0 0
7
What are the functions in C programming?
Functions in C are the basic building blocks of a C program. A function is a set of statements enclosed within curly brackets ({}) that take inputs, do the computation, and provide the resultant output....
Kiran
0 0
6
What is a stream?
Stream means flow... ofstream This data type represents the output file stream and is used to create files and to write information to files. ifstream This data type represents the input file stream and is used to read information from files
Nilam
What is an lvalue?
L-Value stands for left value L-Value of Expressions refer to a memory locations In any assignment statement L-Value of Expression must be a container(i.e. must have ability to hold the data) Variable...
Nagasanthoshi

Now ask question in any of the 1000+ Categories, and get Answers from Tutors and Trainers on UrbanPro.com

Ask a Question

Related Lessons

C, Cpp, Java, Python, Javascript Programming Languages
Learning C is as good as Learning a Natural Language(such as English, Hindi, Telugu, Tamil etc) We use Natural Languages to communicate with humans whereas we use Programming Languages such as C, Cpp,...
V

Vamshi

0 0
0

Pointers and References
Are reference and pointers same? No. I have seen this confusion crumbling up among the student from the first day. So better clear out this confusion at thevery beginning. Pointers and reference...

Necessity of Theory and Practical in Computer Science.
Upon studying a subject both theory and practical are important. Usually many schools concentrate more on theory and the marks not on the practical. Other and opposite kind of people prefer practical...

Tips of learning Java Language/Other Programming Languages
1.You should know the basic concept: If we talk about programming languages so basic concept are same in all the high level languages. So you should know the basic concept firstly then you can easily understand...
I

ICreative Solution

0 0
0

C++ Program-Working with constant using #define preprocessor
//Header Files #include#include // using #define preprocessor for defining a constant#define len 10#define br 5#define rad 3#define NEWLINE '\n' //Main function void main(){ int area_r; float area_c; //Function...
S

Recommended Articles

Lasya Infotech is a Hyderabad based IT training institute founded in 2016 by O Venkat. Believing in his innovation, passion and persistence and with a diverse blend of experience, he started his brainchild to deliver exemplary professional courses to aspiring candidates by honing their skills. Ever since the institute envisions...

Read full article >

Brilliant Academy is one of the reputed institutes for B.Tech tuition classes. This institute is specialised in delivering quality tuition classes for B.E, Engineering - all streams and Engineering diploma courses. Incorporated in 2012, Brillant Academy is a brainchild of Mr Jagadeesh. The main motto of the academy is to...

Read full article >

Applications engineering is a hot trend in the current IT market.  An applications engineer is responsible for designing and application of technology products relating to various aspects of computing. To accomplish this, he/she has to work collaboratively with the company’s manufacturing, marketing, sales, and customer...

Read full article >

Whether it was the Internet Era of 90s or the Big Data Era of today, Information Technology (IT) has given birth to several lucrative career options for many. Though there will not be a “significant" increase in demand for IT professionals in 2014 as compared to 2013, a “steady” demand for IT professionals is rest assured...

Read full article >

Looking for C Language Classes?

Learn from the Best Tutors on UrbanPro

Are you a Tutor or Training Institute?

Join UrbanPro Today to find students near you
X

Looking for C Language Classes?

The best tutors for C Language Classes are on UrbanPro

  • Select the best Tutor
  • Book & Attend a Free Demo
  • Pay and start Learning

Learn C Language with the Best Tutors

The best Tutors for C Language Classes are on UrbanPro

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more