public class String01 { public static void main(String[] args) { String a; a = "Hello World"; // a = location of string "Hello World" System.out.println(a); // Print the string at a } }