Exercise: Attributes
Questions for: Attributes
It possible to create a custom attribute that can be applied only to specific programming element(s) like ____ .
A:
Classes
B:
Methods
C:
Classes and Methods
D:
Classes, Methods and Member-Variables
Answer: C
No answer description is available. Let's discuss.
Which of the following correctly describes the contents of the filename AssemblyInfo.cs?
A:
It contains method-level attributes.
B:
It contains class-level attributes.
C:
It contains assembly-level attributes.
D:
It contains structure-level attributes.
Answer: C
No answer description is available. Let's discuss.
Discuss About this Question.
Which of the following statements are correct about Attributes in C#.NET?
- On compiling a C#.NET program the attibutes applied are recorded in the metadata of the assembly.
- On compilation all the attribute's tags are deleted from the program.
- It is not possible to create custom attributes..
- The attributes applied can be read from an assembly using Reflection class.
- An attribute can have parameters.
A:
1 and 2 only
B:
2 and 4 only
C:
1, 4 and 5 only
D:
All of the above
Answer: C
No answer description is available. Let's discuss.
Discuss About this Question.
Which of the following forms of applying an attribute is correct?
A:
< Serializable() > class sample
{ /* ... */ }B:
(Serializable()) class sample
{ /* ... */ }C:
[ Serializable() ] class sample
{ /* ... */ }D:
Serializablef) class sample
{ /* ... */ }
Answer: C
No answer description is available. Let's discuss.
Discuss About this Question.
Which of the following statements are correct about Attributes used in C#.NET?
A:
If there is a custom attribute BugFixAttribute then the compiler will look ONLY for the BugFix attribute in the code that uses this attribute.
B:
To create a custom attribute we need to create a custom attribute structure and derive it from System.Attribute.
C:
To create a custom attribute we need to create a class and implement IAttribute interface in it.
D:
If a BugFixAttribute is to receive three parameters then the BugFixAttribute class should implement a zero-argument constructor.
Answer: E
No answer description is available. Let's discuss.
Discuss About this Question.
Ad Slot (Above Pagination)
Discuss About this Question.