Given the code fragment:
//IMG//
Which set of class definitions compiles?
- A.interface Story extends SInt {} interface Art extends SInt {}
- B.public interface Story extends SInt {} public interface Art extends SInt {}
- C.sealed interface Story extends SInt {} non-sealed class Art implements SInt {}
- D.non-sealed interface Story extends SInt {} non-sealed interface Art extends SInt {}
- E.non-sealed interface Story extends SInt {} class Art implements SInt {}