C# Programming - Attributes

Exercise : Attributes - General Questions
  • Attributes - General Questions
11.
Which of the following CANNOT be a target for a custom attribute?
Enum
Event
Delegate
Interface
Namespace
Answer: Option
Explanation:
No answer description is available. Let's discuss.

12.
Once applied which of the following CANNOT inspect the applied attribute?
CLR
Linker
ASP.NET Runtime
Visual Studio.NET
Language compilers
Answer: Option
Explanation:
No answer description is available. Let's discuss.

13.
Which of the following is the correct way to apply an attribute to an Assembly?
[ AssemblyDescription("DCube Component Library") ]
[ assembly : AssemblyDescription("DCube Component Library") ]
[ Assemblylnfo : AssemblyDescription("DCube Component Library") ]
< Assembly: AssemblyDescription("DCube Component Library") >
(Assembly: AssemblyDescription("DCube Component Library"))
Answer: Option
Explanation:
No answer description is available. Let's discuss.

14.
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.
1 only
1, 5
2, 3
4, 5
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.

15.
Attributes can be applied to
  1. Method
  2. Class
  3. Assembly
  4. Namespace
  5. Enum
1 and 2 only
1, 2 and 3
4 and 5 only
All of the above
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.