They are essentially different things.
Rackspace Cloud Servers are similar to Amazon's EC2. They are virtual servers you have root access to. Nothing more. It's a concept known as Infrastructure as a Service
What this means is that, once your server is up and running, you have to install all the software you need to run your app: web servers, databases, application servers etc...
These chores can certainly be automated, but someone from your team still has to do that.
Heroku on the other hand is a Platform as a Service - You don't have to bother installing any software. They provide a complete solution stack where you can deploy your app to. You literally just need to put your code there.
What's best? That depends. I certainly don't want to have to deal with installing the software myself unless I absolutely had to. That way I can focus most of my time actually developing my product.
Sorry I didn't answer your three questions but it's hard to do so given they are two very distinct solutions.