A) When you reflect abs(x) about the x-axis, you end up with -abs(x).
Next let's pay attention to the fact that when yo multiply by 0.5 the graph actually expand and not shrink. So for it to shrink by half means to multiply by 2.
Shift to the right 3 means subtract 3 from x, and 2 up, you add 2 to the function. Thus we end up with
`y=2lx-3l+2` (that is 2*abs(x-3)+2)
B) Your answer is correct.