Review Questions

3.1 Given char c = 'A';

What is the simplest way to convert the character value in c into an int?

Select the one correct answer.

  1. int i = c;

  2. int i = (int) c;

  3. int i = Character.getNumericValue(c);

3.2 What will be the result of attempting to compile and run the following class?
public class Assignment {
    public static void main(String[] args) {
        int a, b, c;
        b = 10;
        a = b = c = 20;
        System.out.println(a);
    }
}

Select the one correct answer.

  1. The code will fail to compile, since the compiler will recognize that the variable c in the assignment statement a = b = c = 20; has not been initialized.

  2. The code will fail to compile because the assignment ...

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.