Discuss the below:
Q: Compile a two-line text-printing program, similar to the Java welcome programming examples below. Using the example techniques compile a two line text program.
The first line should display the following text: "Hi, my name is [insert your name]." The second line should display the following text: "I was born in [insert your birth place].
Example
1 // Welcome2.java
2 // Printing a line of text with multiple statements.
3
4 public class Welcome2
5 {
6 // main method begins execution of Java application
7 public static void main( String args[] )
8 {
91
0
11
12 } // end method main
13
14 } // end class Welcome2.