*Based on answer choices A-E, what is the code's output?
2. Given the following code, the output is __.
String str1 = new String("Apple");
String str2 = "Apple";
System.out.print(str1.equals(str2));
A. 0
B. 1
C. false
D. true
E. str2
The code's output is: D. true
Comments
Leave a comment