0 / 60 seg.

public GenericExample(T data) { this.data = data; } public void showType() { System.out.println(data.getClass().getName()); } public static void main(String[] args) { GenericExample example = new GenericExample<>("Hello"); example.showType(); } } ```