Interfaces

Q1:
Which of the following statements is correct about the C#.NET code snippet given below?
interface IMyInterface
{ 
    void fun1(); 
    int fun2();
}
class MyClass: IMyInterface
{ 
    void fun1()
    { } 
    int IMyInterface.fun2()
    { } 
}

A A function cannot be declared inside an interface.

B A subroutine cannot be declared inside an interface.

C
A Method Table will not be created for class MyClass.

D
MyClass is an abstract class.

E
The definition of fun1() in class MyClass should be void IMyInterface.fun1().

ANS:E -

The definition of fun1() in class MyClass should be void IMyInterface.fun1().

No answer description is available. Let's discuss.



img not found
img

For help Students Orientation
Mcqs Questions

One stop destination for examination, preparation, recruitment, and more. Specially designed online test to solve all your preparation worries. Go wherever you want to and practice whenever you want, using the online test platform.