0 / 60 seg.

Which of the following is true about the this keyword?

class Book {
    private String title;
    public void setTitle(String title) {
        this.title = title;
    }
}