Answer:
The answer to the given question in the option "a".
Explanation:
In the given c++ program the correct sets value of x and y is option a:
void dClass::setXY(int a, int b) //function implementation
{ //function body.
x = bClass.setX(a); //variable x hold value of setX() function.
b = y; //variable b holds value of y.
}
And other option are not correct that can be described as:
So the answer to this question is the option "a".