Ok, since we're weighing in with opinion:
I believe that table names should be plural. Tables are a collection (a table) of entites. Each row represents a single entity, and the table represents the collection. So I would call a table of Person entities People (or Persons, whatever takes your fancy).
For those who like to see singular "entity names" in queries, that's what I would use table aliases for:
SELECT person.Name
FROM People person
A bit like LINQ's "from person in people select p"person.Name".
As for 2, 3 and 4, I agree with @Lars.
