You can think of IP address as 4 8bit numbers, divided by dots.
32.232.232.11/24
The number after the slash (/ sign) represents # of "significant" bits, that are included in the network. In your case - 24 essentially means that for this CIDR block first 3 numbers (8*3=24) are "significant" and the rest can be anything.
32.232.232.11/24 includes all addresses between 32.232.232.0 and 32.232.232.255
32.232.232.11/24 and 32.232.232.222/24 essentially interpreted the same. The last number is not significant.
32.232.232.11/16 would include everything between 32.232.0.0 and 32.232.255.255
In 32.232.232.11/32 all 32 bits counts, which leaves only one address 32.232.232.11 in this mask.
0.0.0.0/0 has zero significant bits and basically includes the entire IPv4 address space.
There are few IP ranges that are reserved for private networks 10.x.x.x, 172.x.x.x and 198.162.x.x that might look familiar from VPCs or your home network.
In AWS VPC you'll frequently see CIDR ranges like 10.0.0.0/16 for VPC and 10.0.1.0/24 for subnets.
The rest of IPv4 address space is usually assumed to be the public internet and besides 32.232.232.11/32 (single, specific IP address) and 0.0.0.0/0 - "open to the world" you rarely see other types of ranges.