-2

If a IP address is 192.168.112.28 what does each quadrant represent in this IP address?

chamz33
  • 113

2 Answers2

4

It is a 32-bit unsigned integer, converted into four 8-bit unsigned integers so that humans can read it more easily. The numbers are represented most-significant-bit-first.

Michael Hampton
  • 252,907
-1

IP address consists of 32 bits, it is represented as 4 octets of numbers from 0-255 instead of binary form. For example, the IP address: 192.168.112.28 in binary form is 11000000.10101000.01110000.0011100

ks_1010
  • 121
  • 1
  • 2
  • 8