Review Questions

10.10 Given the following program, which lines will print 11 exactly?
class MyClass {
    public static void main(String[] args) {
        double v = 10.5;

        System.out.println(Math.ceil(v));        // (1)
        System.out.println(Math.round(v));       // (2)
        System.out.println(Math.floor(v));       // (3)
        System.out.println((int) Math.ceil(v));  // (4)
        System.out.println((int) Math.floor(v)); // (5)
    }
}

Select the two correct answers.

  1. The line labeled (1).

  2. The line labeled (2).

  3. The line labeled (3).

  4. The line labeled (4).

  5. The line labeled (5).

10.11 Which method is not defined in the Math class?

Select the one correct answer.

  1. double tan2(double)

  2. double cos(double)

  3. int abs(int ...

Get Programmer's Guide to Java™ Certification, A: A Comprehensive Primer, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.