BaşlayınÜcretsiz Başlayın

Java's entry point

Every Java program needs a starting point - a place where execution begins. Without this entry point, Java wouldn't know where to start running your code. Let's set up this critical component!

Bu egzersiz

Introduction to Java

kursunun bir parçasıdır
Kursu Görüntüle

Egzersiz talimatları

  • Add the method name that serves as the entry point for Java programs.

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

class SecondJavaApp {

	// Add the entry point method
    public static void ____(String[] args) {
    
    	System.out.println("Java starts code execution in the main.");
    }
}
Kodu Düzenle ve Çalıştır