0 / 60 seg.

What is demonstrated by using the this keyword in constructors and methods?

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