✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
(Richtzeit: 3 Minuten)
Gegeben ist folgender Source-Code
String s1 = "Hello";
String s2 = "Welcome";
s1 = s2;
s2 = "Hello";System.out.println("s1: " +s1);System.out.println("s2: " +s2);
Welcher Output erscheint auf der Konsole?