Which of the following lines of code will get the absolute value of a variable a? Choose the correct answer: A. int result = .Math.abs(x); B. int result = abs(x); C. int result = .Math.absoluteValue(x); D. int result = absoluteValue(x); E. int result = !x;