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?
Custom attribute cannot be applied to an assembly.
[assembly: Tested("Sachin", testgrade.Good)]
[Tested("Virat", testgrade.Excellent)] class customer { /* .... */ }
Custom attribute cannot be applied to a method.
Custom attribute cannot be applied to a class.
Options
A. 1 only
B. 1, 5
C. 2, 3
D. 4, 5
E. None of the above
Correct Answer
2, 3
More questions
1. There is no private or protected inheritance in C#.NET.