+91-85006-22255
What will be the output of the following program?
public class StringDemo { public static void main(String[] args) { String m = "Merit Campus"; System.out.println(m); m += " - " + "Your Online Java School"; System.out.println(m); }}
Topic: Java String
Read this topic Take test on this topic
Open In App