class Practice2 { public static void main(String[] args) { // Q1: declare a vari. my_college? String my_college; // Q2: assign "VWC" to the var.? my_college = "VWC" + "."; // Q3: output the value of the vari. my_college to monitor? System.out.println(my_college); // Q4: write the statement to assign a new // value of "Harvard University" to the above var. my_college = "Harvard"; // Q5: output again? System.out.println(my_college); System.out.println("\n\n\nDone.\n\n"); } }