Answer:
The ending value of y is 9.0
Step-by-step explanation:
Given
x = 9.0;
y=4.0
y =pow(sqrt(x),sqrt(y));
Required
Determine the end value of y
Lines 1 and 2 initialize the values of x and y to be 9.0 and 4.0 respectively.
The instruction on line 3 can then be translated to:

From the hint in the question, we understand that:

Apply this hint on sqrt(9.0) and sqrt(4.0); this gives:


So, we have:

Also, from the hint; we understand that:

When this hint is applies,

i.e.


Hence, the ending value of y is 9.0