public static int Abs(int)
Which of the following would be a valid call to the above method?

A. answer = Abs(-23);
B. answer = int Math.Abs(-23)
C. answer = Math.Abs(-23)
D. answer = int Abs(-23)

Answer: C

Computer Science & Information Technology

You might also like to view...

Which of the following is NOT true about using aggregate functions in a query?

A) Aggregate functions can be used in queries to perform calculations on selected fields and records. B) By default, the query design grid has a place to enter aggregate functions. C) One advantage to using aggregate functions in queries, rather than just a total row, is that you can group criteria and then calculate the aggregate functions for a group of records. D) Each column or field can calculate only one aggregate function.

Computer Science & Information Technology

Using the % of Grand Total Calculation Option will display the value as ________

A) a percentage of the row total B) a percentage of the column total C) a percentage of the grand total D) a percentage of the parent level row

Computer Science & Information Technology