I'll do parts (a) through (c) to get you started
(a) False. The explanatory variable is always along the x axis, and the response variable is along the y axis. The response variable reacts to whatever the input explanatory variable is, hence the name "response".
---------
(b) True. If all data lie along a single straight line with nonzero slope, then either r = -1 or r = 1. If we have all data points on a line with some negative slope, then r = -1. If the regression slope is positive, then r = 1. Either way, it will lead to r^2 = 1 because (1)^2 = 1 and (-1)^2 = 1. In other words, there are two solutions to r^2 = 1 and they are r = -1 or r = 1. In the case of r = -1, we say the data has perfect negative linear correlation. With r = 1, the data has perfect positive linear correlation.
---------
(c) True. If r > 0, then we have some level of positive correlation which means the regression slope is positive in some way. If r < 0, then the regression slope is negative in some way. That must mean r = 0 leads to the regression slope having a flat horizontal line. This could mean one of two things: i) The points are all on or near the same curve such as a parabola, ii) The points are completely randomly scattered about. If case (i) happens, then it's better to use nonlinear regression instead of linear regression.