Which exception type normally results from evaluating "3" + 2?
Explanation
Addition receives a string and an integer in a combination for which the operation has no suitable meaning, so TypeError is raised. The content of each operand is individually valid, which makes ValueError the less fitting category.