What is the result for the next code? public static void main(String[] args) {
String test = new String("Hello"); String test2 = new String("Hello"); System.out.println(test==test2); }
String test = new String("Hello"); String test2 = new String("Hello"); System.out.println(test==test2); }
Anonymous Quiz
7%
null
3%
Hello
67%
false
23%
true
👍1