We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10006cd commit 00ed2abCopy full SHA for 00ed2ab
java-multiple-choice-questions-answers.md
@@ -439,10 +439,10 @@ A. 1
439
440
#### Q. What is the output of the following application?
441
```java
442
- String john = "john";
443
- String jon = new String(john);
444
-
445
- System.out.println((john==jon) + " "+ (john.equals(jon)));
+String john = "john";
+String jon = new String(john);
+
+System.out.println((john==jon) + " "+ (john.equals(jon)));
446
```
447
A. true true
448
B. true false
0 commit comments