It's quite common to specify the same element more than once in your stylesheets. It's very common to do it if you've got separate stylesheets to deal with different aspects of your design, or if you've got a CMS where you have default styles in one stylesheet and themed styles in another.
And it's also quite common for sites to merge all their stylesheets into a single file for download to save server load.
Given both the above, it is therefore quite common for a single stylesheet to have multiple references to the same tag, class or even ID.
The good news is that it really doesn't matter. If you specify the same thing more than once, CSS will treat it as if they were merged. If you have exactly the same style in both declarations, the latter one will override the former one. This is what allows the styles for a theme to override the default styles of the CMS.
The only exception to this is if you use the !important marker. This will force the one labelled important to override anything else.
For part B of your question: No, they will be the same. There is no difference between styles loaded via an external CSS file and those loaded inline in the main HTML page.
It is generally preferable most of the time to load them via external CSS files though, because they can then be cached by the browser separately to the HTML page, meaning less work for your server when the user visits several pages in your site.