The answer is the second choice:
a, if a is greater than or equal to 0 and
-a, if a is less than or equal to 0
You can check this by testing out values.
The absolute value of 5 is 5 while the absolute value of -5 is -(-5) or 5. This follows the chosen function.