Introduction
Here is the source code for Main.java
Source
public class Main {
public static void main(String args[]) {
char charArray[] = { 'j', 'a', 'v', 'a', '2', 's', '.', 'c', 'o', 'm' };
String s3 = new String(charArray);
System.out.println(s3);
}
}