$S=\{(x,y,z):x^2+y^2+z^2=4, (x-1)^2+y^2 \leq 1 \}$.
$x^2+y^2+z^2=4 \iff \frac{x^2}{4}+\frac{y^2}{4} +\frac{z^2}{4}=1$
I'm not exactly sure what to parametrize the set $S$ by I thought of using spherical coordinates, in particular $G(\theta, \phi)=(\frac{1}{2}cos\theta sin\phi, \frac{1}{2}sin\theta sin\phi, \frac{1}{2}cos\phi)$
$(x-1)^2+y^2 \leq 1$ I'm not sure how this is contributing to the work..
The set here is a pair of spherical caps - the result of intersecting a sphere with the inside of an off-center cylinder. The projection of the sphere in the $xy$-plane is a circle of radius $2$, while the projection of the cylinder is a circle of radius $1$, off-center by $1$. They touch on the boundary, but the smaller circle is entirely contained in the larger one - which means we get a cap with $z>0$ and another with $z<0$.
So, then, parametrizing. First, rectangular coordinates:
We have $(x-1)^2+y^2\le 1$, and $z=\pm\sqrt{4-x^2-y^2}$. That gives us two parametrized regions: $$0\le x\le 2, -\sqrt{1-(x-1)^2}\le y\le\sqrt{1-(x-1)^2}, z(x,y)=\sqrt{4-x^2-y^2}$$ $$0\le x\le 2, -\sqrt{1-(x-1)^2}\le y\le\sqrt{1-(x-1)^2}, z(x,y)=-\sqrt{4-x^2-y^2}$$
Well, that's a lot of square roots. Definitely not the easiest to work with.
How about cylindrical coordinates? We've got two circles here, so there are two ways to go. First, cylindrical with respect to the small circle: $$0\le r\le 1, 0\le\theta\le 2\pi, x = 1+r\cos\theta, y = r\sin\theta, z=\sqrt{4-(1+r\cos\theta)^2-r^2\sin^2\theta}$$ $$0\le r\le 1, 0\le\theta\le 2\pi, x = 1+r\cos\theta, y = r\sin\theta, z=-\sqrt{4-(1+r\cos\theta)^2-r^2\sin^2\theta}$$ Those $z$ formulas simplify a bit, but there will still be a $\cos\theta$ term in there.
Next, cylindrical with respect to the large circle: $$(r\cos\theta-1)^2+(r\sin\theta)^2\le 1,x=r\cos\theta,y=r\sin\theta,z=\sqrt{4-r^2}$$ $$(r\cos\theta-1)^2+(r\sin\theta)^2\le 1,x=r\cos\theta,y=r\sin\theta,z=-\sqrt{4-r^2}$$ In this option, we've shunted the more complicated parts off into the bounds for $r$ and $\theta$. Expanding that inequality out, it becomes \begin{align*}r^2\cos^2\theta-2r\cos\theta+1+r^2\sin^2\theta &\le 1\\ r^2 &\le 2r\cos\theta\end{align*} So then, $-\dfrac{\pi}{2}\le\theta\le\dfrac{\pi}{2}$ and $0\le r\le 2\cos\theta$. That looks like the way to go.
So, now that you have a parametrization, can you set up and solve the area integral?