+91-85006-22255
What will be the output of the following program?
public class StringExample { public static void main(String args[]) { String s1 = "Hello"; String s2 = new String("Hello"); System.out.println(s1 + " * "+s2); }}
Topic: Java String
Read this topic Take test on this topic
Open In App