The following are the initial bits (out of 32) for the different classes of addresses in IPv4:
and the following are the number of blocks and block sizes respectively for each class:
For class A, I can see that the number of blocks is 2^7=128, and block size is 2^24=16777216. But I am unable to understand the following:
How the number of blocks in class B (16384), and in class C (2097152) are calculated.
How the size of blocks for classes D and E are calculated.
How can class D and class E have the same number of blocks and block size even though their initial four bits are not the same?
Please help me understand it as the calculation I used for class A is not working out for these.
Keep in mind: you have 32 bits overall.
Class A uses one bit of those 32; so 31 are left. And guess what ... 2^7 and 2^24 results in ... 31 bits left for block data.
Classes D and E ... both using four bits; so 28 bits are left. 2^28 is ... surprise 268.435.456
Now just go and check how many bits are left for the other classes!
The thing is: those first bits are mutually exclusive.
When the 32 bits start with 0, you know: class A; and so on.