Advertisement
Dprogrammed1

java ques 15

Feb 22nd, 2019
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.14 KB | None | 0 0
  1. class eq
  2. {
  3. public static void main(String args[])
  4. {
  5. String s1 = “Hello”;
  6. String s2 = new String(s1);
  7. System.out.println(s1==s2);
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement