

MCQOPTIONS
Saved Bookmarks
1. |
Select the correct implementation of the interface which is mentioned below. interface a1 { int fun(int i); } |
A. | class a { int fun(int i) as a1.fun { } } |
B. | class a: implements a1 { int fun(int i) { } } |
C. | class a: a1 { int a1.fun(int i) { } } |
D. | None of the mentioned |
Answer» D. None of the mentioned | |