//StringVariables - Uses variables of the String class type public class StringVariables { public static void main(String[] args) { String firstPart = "Hello, "; String secondPart; secondPart = "Java Programmers"; System.out.println(firstPart + secondPart); } }