Answer:
d. =SQRT(ABS(A2))
Step-by-step explanation:
A spreadsheet will not tell you the square root (or half power) of a negative number. It only performs math using real numbers.
Trying to take a square root of a negative number will result in a #NUM! error being shown in the result cell. Assuming you want the root of the magnitude of the numbers in column A, the value you want the root of is ABS(A2).
Using a dollar sign on a cell reference renders that portion of the cell reference fixed when the formula is copied. Referencing cell A$2 will mean you will get 399 copies of the square root of the contents of cell A2 in cells B2 through B400.
The formula that will give you the square root of the magnitude of the adjacent cell in column A will be
=SQRT(ABS(A2)) . . . . . . . . . formula for cell B2, copied to cells below