At Line Number 2 In The Following Code Choose 3 Valid Datatype #305
At line number 2 in the following code, choose 3 valid data-type attributes/qualifiers among “final, static, native, public, private, abstract, protected”</p> <pre><code class="language-java" line="1"> public interface Status { /* insert qualifier here */ int MY_VALUE = 10; }</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs128 Java. It can also be found in gs gs128 Java Inheritance - Method Overriding in Java - Quiz No.1.
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; }
final, native, private
final, static, protected
final, private, abstract
final, static, public