Chapter 2 - BinaryBasics/2.3 BitsAndBytes.md
Computers "understand" binary (Ex. 10110010). Binary is often talked about in chunks.
Before we get into other data types, let's talk about signed vs unsigned. Signed numbers can be positive or negative. Unsigned is only positive numbers. You can remember this by thinking about how you would normally write positive and negative numbers. If you're using both positive and negative numbers, you'll want to distinguish the negative number with a sign ("-"). If you're using only positive numbers, then no sign is needed.
For more data types go here: https://www.tutorialspoint.com/cprogramming/c_data_types.htm
The least significant digit has the lowest value. The most significant digit has the highest value. The least significant digit in 124 is 4. The most significant is 1 (100).