Answer:
T
Step-by-step explanation:
An interface is compiled to a separate bytecode class file.
For example of out application has a class myClass.java and an interface myInterface.java:
class myClass{
String name;
int age;
}
interface myInterface{
public String getName();
public int getAge();
}
Both of these are compiled to their own respective class files by the compiler,namely, myClass.class and myInterface.class.