attributes c programming questions

11.

Which of the following CANNOT be a target for a custom attribute?
A.     Enum    B.     Event
C.     Delegate    D.     Interface
E.     Namespace
Answer & Explanation

Answer: Option E

Explanation:

No answer description available for this question. Let us discuss.
View Answer Workspace Report Discuss in Forum
12.

Once applied which of the following CANNOT inspect the applied attribute?
A.     CLR
B.     Linker
C.     ASP.NET Runtime
D.     Visual Studio.NET
E.     Language compilers
Answer & Explanation

Answer: Option B

Explanation:

No answer description available for this question. Let us discuss.
View Answer Workspace Report Discuss in Forum
13.

Which of the following is the correct way to apply an attribute to an Assembly?
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”))
Answer & Explanation

Answer: Option B

Explanation:

No answer description available for this question. Let us discuss.
View Answer Workspace Report Discuss in Forum
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?

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.

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

Answer: Option C

Explanation:

No answer description available for this question. Let us discuss.
View Answer Workspace Report Discuss in Forum
15.

Attributes can be applied to

Method
Class
Assembly
Namespace
Enum

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
Answer & Explanation

Answer: Option B

Explanation:

No answer description available for this question.

Leave a Reply0