Let's say I wanted to check to see if every single member of an array (size 100) is or is not 0. The not so refined way of doing so would be to open an if statement and reference every single member, one by one, and check to see if they all equal 0.
It would be quite the hassle to write down all 100 reference, not to mention the fact that this method probably is very error prone.