Question from the Java test

Archived

what is the output of the follwing code?
public static void main(String[] args) {
String s1 = "java";
String s2 = "geek";
String s3="Javageek";
System.out.println(s3==s1+s2);
}

Author: FodiéStatus: Archived(New question!)Question not yet passed
-1
Community Evaluations
developer avatar
Vincent Cotro
16/03/2023
Bonjour, la réponse à la question est "false" quand je regarde dans un simulateur.