Answer:
public class Program
{
public static void main(String[] args) {
System.out.println("Hello, Daddy and Mum");
}
}
Step-by-step explanation:
Java is a high level, modern programming language designed in the early 1990s by Sun Microsystems.
The above one is simple program that displays “Hello, Daddy and Mum” on the screen.
In Java, every application begins with a class definition. Here we have named class Program.
The main() method is the entry of the program. A valid Java program must have main() method.
The code prints the text “Hello, Daddy and Mum” using System.out.println() function.