To be honest, there's no super-easy way. The easiest way is to guess-and-check.
For example, say that you have 857, and you want to see if it's a cube number.
9^3 is 729. 10^3 is 1000. Since 857 is between 729 and 1000, it can't be a cube.
Another way to do it might be to try and factor the number into primes, and make sure that each number has a "pair" (or is part of a triplet). For example, take 1936. You know that it's even, so divide by 2 until you can't do it anymore. You get 2 * 2 * 2 * 2 * 121. Now, factor 121, and you get 2 * 2 * 2 * 2 * 11 * 11.
You can pair up 2's and pair up 11's to get:
(2 * 2) * (2 * 2) * (11 * 11)
You can now take one number from each pair and put it in one of two groups, like so:
(2 * 2 * 11) * (2 * 2 * 11)
That's easy to see that it's a square, since both numbers in the parentheses are the same.
Another fun quick trick: All squares end in 0, 1, 4, 5, 6 or 9. So you know that 483957347539873 isn't square.