✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Quelle sera la valeur de la variable i suite à l’exécution de ce code :
int i=1 , j=2;
switch (j){
case 1 : i=2;
case 2 : i=3;
case 3 : i=4;
default : i=5;
}