Select The Correct Implementation Of The Interface Which Is #421
Select the correct implementation of the interface which is mentioned below.</p> <pre><code class="language-csharp" line="1">interface a1 { int fun(int i); }</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Object Oriented Concepts - Interfaces Introduction - Quiz No.1.
Select the correct implementation of the interface which is mentioned below.
interface a1 { int fun(int i); }
class a { int fun(int i) as a1.fun { } }
class a: implements a1 { int fun(int i) { } }
class a: a1 { int a1.fun(int i) { } }
None of the mentioned