samedi 10 octobre 2009

Exercice certification SCJP : Nommage des variables

Exercise 1 :

Given the following :

public class Test {
public static void main(String [] args) {
int $test = 10;
System.out.println("$test=" + $test);

}

}

What is the result ? (choose One)

A $test=10
B $test=null
C Compilation fails
D An exception is thrown at runtime


Exercice 2

Given the following :

public class Test {
public static void main(String [] args) {
int $2test = 10;
System.out.println("$2test=" + $2test);

}

}

What is the result ? (choose One)

A $2test=10
B $test=null
C Compilation fails
D An exception is thrown at runtime














Solution Exercice 1 :

A.Une variable peut commencer par un $ ou un _ .

Solution Exercice 2 :

A Une variable ne peut pas avoir de nom commencant par un chiffre mais peut contenir un chiffre.

3 commentaires: