You're right, such problems do have a specific name: simultaneous equations, or more formally, these ones are a system of linear equations.
Let's think about the maths of it with a little bit of algebra. If the number of new cars the dealership sold can be labelled $n$, and the number of used cars $u$, then the statement of the problem can be written as a pair of equations:
$$
(1)
$$
$$
n + u = 17
$$
and
$$
16000n + 7000u = 191000
$$
or
$$
(2)
$$
$$
16n + 7u = 191
$$
by simply dividing both sides by $1000$.
The fact that these equations are both true and both involve the same variables ($n$ and $u$) is what gives the pair the name simultaneous.
Now, for how to go about solving them:
Solving Simultaneous Equations
The key is to realise that both equations are true. Therefore, anything that can be said using one can be assumed to be true in the other (after all, if we have some number of used cars sold, knowing an extra fact about it doesn't change that number!). We use this to our advantage to cast the problem in terms of a single variable.
Equation $(1)$ tells us:
$$
n + u = 17
$$
so, by re-arranging it:
$$
u = 17 - n
$$
Now, we know that this is true in both equations, so we can go ahead and substitute $u$ for $17 - x$ wherever it appears in equation $(2)$! From there, it's easy to reduce things down:
$$
16n + 7u = 191
$$
$$
16n + 7(17 - n) = 191
$$
$$
16n + 119 - 7n = 191
$$
$$
9n = 72
$$
$$
n = 8
$$
Et voila! $n = 8$. We take this and put it back into equation $(1)$ (or our re-arranged form) to get a value for $u$:
$$
u = 17 - n = 9
$$
And there we have it; the dealership sold $8$ new cars and $9$ used cars.
Summary
The overall approach we've got here holds for any such problem - we've got two variables and two known equations in those variables. The key is to re-arrange one to get a representation of one of the variables in terms of the other, and then plug that into the other equation.
In general, you might like to know that any set of $N$ equations involving $N$ variables can be solved by doing the exact same thing over and over again. But even one less equation to give you information, and you'll never manage it!