Which three are valid on line 12? (Choose three.)

Given

11. public interface Status {
12. /* insert code here */ int MY_VALUE = 10;
13. }

Which three are valid on line 12? (Choose three.)

Given

11. public interface Status {
12. /* insert code here */ int MY_VALUE = 10;
13. }

Which three are valid on line 12? (Choose three.)

A.
final

B.
static

C.
native

D.
public

E.
private

F.
abstract

G.
protected



Leave a Reply 2

Your email address will not be published. Required fields are marked *


Kanthi

Kanthi

only public, static & final are permitted for the interface field Status.MY_VALUE;