At line number 2 in the following code, choose 3 valid data-type attributes/qualifiers among "final, static, native, public, private, abstract, protected"
public interface Status
{
/* insert qualifier here */ int MY_VALUE = 10;
}
public interface Status
{
/* insert qualifier here */ int MY_VALUE = 10;
}
A. final, native, private
B. final, static, protected
C. final, private, abstract
D. final, static, public
Answer: Option D
Join The Discussion