You have asked two questions, one about whether the name of a variable matters, the other about dummy variables. They're different but related.
Strictly speaking, it does not matter what you name your variables. If you have a function $f$ from, say, $\mathbb{R}$ to itself then the elements in both the domain and the codomain are real numbers. You may often see this described as "$y = f(x)$". That usually does no damage, and sometimes helps keep the meaning of numbers straight - those called "$x$" are in the domain while those called "$y$" are in the codomain. But that's not at all required and is sometimes confusing. You should talk about the function $\sin$, not the function $\sin(x)$.
Now for dummy variables. The expression
$$
\sum_{n=1}^3 n^2
$$
means just
$$
1^2 + 2^2 +3^2 .
$$
There is no "$n$" in it. You could write the same thing as
$$
\sum_{@=1}^3 @^2 .
$$
The $n$ and the $@$ are dummy variables - they are not there. The same is true for the "variable of integration":
$$
\int_1^2 \sin(x) dx = \int_1^2 \sin(@) d@ = \int_1^2 \sin .
$$
The last of these is unambiguous when you work with $\sin$ as a real valued function of a real variable.
That said, there are times when a (dummy) variable of integration is helpful. With it you can distinguish between
$$
\int_1^2 \sin(xt^2) dx \text{ and } \int_1^2 \sin(xt^2) dt .
$$
The first is a number that depends on the value of $t$, the second a number that depends on the value of $x$.
The dummy variable $x$ and the $dx$ are quite important when you think about applications of integrals in geometry and physics. If you imagine the integral of $\sin$ as calculating the area under the sine curve then the expression
$$
\sin(x) dx
$$
is the (infinitesimal) area of a rectangle with height $\sin(x)$ and (infinitesimal) base $dx$. Each of those quantities has units length and their product has units area. The integral sign is Leibniz's elongated "S", for "sum".