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.
Merci pour les astuces de certif, bien utile!
RépondreSupprimerZerty07
"choose Two" ne veut pas dire qu'il faut choisir 2 réponses ?
RépondreSupprimerBien Vu !
RépondreSupprimer