الرجوع
تسجيل الدخول
public class Book {
    private String title;
    private int pageCount;

    public Book(String title) {
        this.title = title;
        this(250); 
    }

    public Book(int pageCount) {
        this.pageCount = pageCount;
        System.out.println("Page count set.");
    }
}

What will be the output when the following code is executed?

Book myBook = new Book("Java Fundamentals");