Home / C# Programming / Attributes :: General Questions

C# Programming :: Attributes

  1. Which of the following CANNOT be a target for a custom attribute?

  2. A.
    Enum
    B.
    Event
    C.
    Delegate
    D.
    Interface
    E.
    Namespace

    View Answer

    Workspace

    Discuss Discuss in Forum


  3. Once applied which of the following CANNOT inspect the applied attribute?

  4. A.
    CLR
    B.
    Linker
    C.
    ASP.NET Runtime
    D.
    Visual Studio.NET
    E.
    Language compilers

    View Answer

    Workspace

    Discuss Discuss in Forum


  5. Which of the following is the correct way to apply an attribute to an Assembly?

  6. A.
    [ AssemblyDescription("DCube Component Library") ]
    B.
    [ assembly : AssemblyDescription("DCube Component Library") ]
    C.
    [ Assemblylnfo : AssemblyDescription("DCube Component Library") ]
    D.
    < Assembly: AssemblyDescription("DCube Component Library") >
    E.
    (Assembly: AssemblyDescription("DCube Component Library"))

    View Answer

    Workspace

    Discuss Discuss in Forum


  7. Which of the following is the correct way of applying the custom attribute called Tested which receives two-arguments - name of the tester and the testgrade?

    1. Custom attribute cannot be applied to an assembly.
    2. [assembly: Tested("Sachin", testgrade.Good)]
    3. [Tested("Virat", testgrade.Excellent)]
      class customer { /* .... */ }
    4. Custom attribute cannot be applied to a method.
    5. Custom attribute cannot be applied to a class.

  8. A.
    1 only
    B.
    1, 5
    C.
    2, 3
    D.
    4, 5
    E.
    None of the above

    View Answer

    Workspace

    Discuss Discuss in Forum


  9. Attributes can be applied to

    1. Method
    2. Class
    3. Assembly
    4. Namespace
    5. Enum

  10. A.
    1 and 2 only
    B.
    1, 2 and 3
    C.
    4 and 5 only
    D.
    All of the above
    E.
    None of the above

    View Answer

    Workspace

    Discuss Discuss in Forum