The main difference between AutoCloseable and Closeable is that:
a) AutoCloseable throws IOException; Closeable throws Exception
b) AutoCloseable is an implementation; Closeable is a concept
c) AutoCloseable throws Exception; Closeable throws IOException
d) AutoCloseable is a concrete class and Closeable is an interface