| 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.
|
| 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.
|
| 3.3 |
What will be the result of attempting to compile and run the following program?
public class MyClass {
public static void main(String[] args) {
String a, b, c;
c = new String("mouse");
a = new String("cat");
b = a;
a = new String("dog");
c = b;
System.out.println(c);
}
}
Select the one correct answer.
|
![]() | A programmer's guide to Java Certification |