They do not use a number in decimal form (base 10). Instead, they say, βThis is a number with 30 trailing 0 bits,β meaning that the number is used for systems with a base of 2.
Battle advancement facilitates informing the reader of the meaning. In base 10, it will represent 1073741824 , which seems like a random number.
This is a common occurrence in programming. For instance:
int secondsInDay = 60 * 60 * 24;
We represent the number of seconds per minute, multiplied by the number of minutes per hour, multiplied by the number of hours per day.
We could just put 86400 , but what if we wanted to change the number of minutes per hour (to represent the time on some other planet)? You will need to manually calculate it in order to change the value.
On the other hand, breaking it down into units, as shown above, we can simply change the average 60 to change the number of minutes per day.
source share