Memorizing powers of 2 will speed up your binary conversions and help you recognize patterns in code. Here are the first 16:
20=1, 21=2, 22=4, 23=8, 24=16, 25=32, 26=64, 27=128, 28=256, 29=512, 210=1024, 211=2048, 212=4096, 213=8192, 214=16384, 215=32768.
Notice 210≈1000 (actually 1024). So 220≈1 million, 230≈1 billion. These approximations help you estimate algorithm runtimes and memory usage.