✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
(Richtzeit: 3 Minuten)
Gegeben ist der folgende Source-Code:
int[] arr = new int[5];
for(int i=0; i<arr.length; i++){
arr[i] = i;
}
for(int i=0; i<arr.length; i++) {
System.out.print(arr[i]);
}
Welche Ausgabe wird dabei erzielt?