+91-85006-22255
What will be the output of the following program?
public class StringExample { public static void main(String args[]) { char[] input = {'J','A','V','A'}; String s = new String(input); System.out.println(s); }}
Topic: Java String
Read this topic Take test on this topic
Open In App