Memory heap

holmes4:
Can you give me an example of a static object on the Arduino?.

I can have more than 1 serial on the mega so that can't be static. But the pre-processing done by the Arduino's build system makes it hard to tell.

I can have more than one servo or bounce so they can't be and so the list goes on.

You can have more than one int on the stack, and you can have more than one Serial on the stack. You don't need to use new if you want to have more than one int, and you don't need it to have more than one Serial or Bounce or Servo.