interface Animal { String makeNoise(); String move(int numSteps); void eat(int pounds) throws Exception; }