There is no technical specification or requirement when assigning IP addresses as long as they are within the configure segment range.
An IPv4 address is 32 bits in length represented in dotted decimal notation in groups of four so from 0.0.0.0 - 255.255.255.255
Those with a starting address of 192.168 are considered Class C addresses in a classful address assignment. The /24 is called CIDR notation and represents the subnet bit mask which tells how many bits are used to represent the "network id" part of the address by ANDing the bits.
192.168.0.0 and /24
11000000.10101000.00000000.00000000
11111111.11111111.11111111.00000000
------------------------------------------------
11000000.10101000.00000000 24 bits
192.168.0.X is the...