Java - Strings and String Handling
What will be the output of the following code?
String first = "Good";
String second = "Morning";
System.out.println(first + " " + second);
