ComenzarEmpieza gratis

Java's entry point

The public static void main(String[] args) is where a Java program starts. It's your gateway to writing and running Java code!

Let's get started by making sure the program has a proper entry point.

Este ejercicio forma parte del curso

Introduction to Java

Ver curso

Instrucciones del ejercicio

  • Add the appropriate keyword instead of the ____.

Ejercicio interactivo práctico

Prueba este ejercicio completando el código de muestra.

class SecondJavaApp {

	// Replace the ____ below with the necessary keyword
    public static void ____(String[] args) {
    
    	System.out.println("Java starts code execution in the main.");
    }
}
Editar y ejecutar código