I think there's a problem with allowing people to collect reputation points on questions that are closed or really bad. I think it's the wrong incentive. Let's look at what the options are when somebody encouters a bad question. They can:
A) Vote down the question, costing them 1 reputation point.
B) Vote to close the question. No rep change positive or negative.
C) Answer the question, and possibly receive reputation.
The thought occurred to me with this answer I posted on meta, but it applies to lots of different questions that I see. People see a question, and even though it's a bad question, they still post an answer to it. Usually if the answer is good, they receive 1 or 2 upvotes. However, this is kind of like feeding the trolls. The people with bad questions still get answers.
So I think it might be a good idea to consider not allowing collecting reputation on closed or severely downvoted (-10?) questions, as it encourages the wrong behaviours in the askers and answerers. Here are few examples I found while searching through the data explorer.
How to remove the things I don't like about python
bool true or false and negative return
Difference between Facebook and Twitter APIs
You can find lots more questions like this with the following query in the data explorer.
SELECT Q.ID,A.ID,Q.Title,A.Body FROM Posts AS Q
INNER JOIN Posts AS A
ON Q.Id = A.ParentID AND A.Score > 2
WHERE Q.PostTypeId=1 AND Q.Score < 0 AND NOT Q.ClosedDate IS NULL