A PHP Error was encountered

Severity: Warning

Message: A non-numeric value encountered

Filename: controllers/home.php

Line Number: 222

A PHP Error was encountered

Severity: Warning

Message: A non-numeric value encountered

Filename: controllers/home.php

Line Number: 228

Interfaces - C# Programming Questions and Answers
Home / C# Programming / Interfaces :: General Questions

C# Programming :: Interfaces

  1. 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()    
         { }
     }
    

     

  2. 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().

    View Answer

    Workspace

    Discuss Discuss in Forum


  3. Which of the following can be declared in an interface?

    1. Properties
    2. Methods
    3. Enumerations
    4. Events
    5. Structures

  4. A.
    1, 3
    B.
    1, 2, 4
    C.
    3, 5
    D.
    4, 5

    View Answer

    Workspace

    Discuss Discuss in Forum


  5. A class implements two interfaces each containing three methods. The class contains no instance data. Which of the following correctly indicate the size of the object created from this class?

  6. A.
    12 bytes
    B.
    24 bytes
    C.
    0 byte
    D.
    8 bytes
    E.
    16 bytes

    View Answer

    Workspace

    Discuss Discuss in Forum


  7. Which of the following statements is correct about an interface used in C#.NET?

  8. A.
    One class can implement only one interface.
    B.
    In a program if one class implements an interface then no other class in the same program can implement this interface.
    C.
    From two base interfaces a new interface cannot be inherited.
    D.
    Properties can be declared inside an interface.
    E.
    Interfaces cannot be inherited.

    View Answer

    Workspace

    Discuss Discuss in Forum


  9. Which of the following statements is correct about Interfaces used in C#.NET?

  10. A.
    All interfaces are derived from an Object class.
    B.
    Interfaces can be inherited.
    C.
    All interfaces are derived from an Object interface.
    D.
    Interfaces can contain only method declaration.
    E.
    Interfaces can contain static data and methods.

    View Answer

    Workspace

    Discuss Discuss in Forum


  11. Which of the following statements is correct about an interface used in C#.NET?

  12. A.
    If a class implements an interface partially, then it should be an abstract class.
    B.
    A class cannot implement an interface partially.
    C.
    An interface can contain static methods.
    D.
    An interface can contain static data.
    E.
    Multiple interface inheritance is not allowed.

    View Answer

    Workspace

    Discuss Discuss in Forum


  13. Which of the following statements is correct about an interface?

  14. A.
    One interface can be implemented in another interface.
    B.
    An interface can be implemented by multiple classes in the same program.
    C.
    A class that implements an interface can explicitly implement members of that interface.
    D.
    The functions declared in an interface have a body.

    View Answer

    Workspace

    Discuss Discuss in Forum


  15. Which of the following statements are correct about an interface in C#.NET?

    1. A class can implement multiple interfaces.
    2. Structures cannot inherit a class but can implement an interface.
    3. In C#.NET, : is used to signify that a class member implements a specific interface.
    4. An interface can implement multiple classes.
    5. The static attribute can be used with a method that implements an interface declaration.

  16. A.
    1, 2, 3
    B.
    2, 4
    C.
    3, 5
    D.
    None of the above.

    View Answer

    Workspace

    Discuss Discuss in Forum


  17. Which of the following is the correct implementation of the interface given below?

     interface IMyInterface
     {   
        double MyFun(Single i); 
     }
    

  18. A.
    class MyClass 
    {   
        double MyFun(Single i) as IMyInterface.MyFun  
        {      
           // Some code   
        } 
    }
    B.
     class MyClass 
     {  
         MyFun (Single i) As Double 
         {    
            // Some code   
         } 
      }
    C.
     class MyClass: implements IMyInterface
     {   
         double fun(Single si) implements IMyInterface.MyFun()  
         {      
            //Some code     
          } 
      }
    
    D.
     class MyClass: IMyInterface
     {  
         double IMyInterface.MyFun(Single i)   
         {     
             // Some code    
         } 
      }

    View Answer

    Workspace

    Discuss Discuss in Forum


  19. Which of the following statements is correct?

  20. A.
    When a class inherits an interface it inherits member definitions as well as its implementations.
    B.
    An interface cannot contain the signature of an indexer.
    C.
    Interfaces members are automatically public.
    D.
    To implement an interface member, the corresponding member in the class must be public as well as static.

    View Answer

    Workspace

    Discuss Discuss in Forum