logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Attributes Comments

  • Question
  • Which of the following are correct ways to specify the targets for a custom attribute?


  • Options
  • A. By applying AttributeUsage to the custom attribute's class definition.
  • B. By applying UsageAttribute to the custom attribute's class definition.
  • C. Once an attribute is declared it applies to all the targets.
  • D. By applying AttributeUsageAttribute to the custom attribute's class definition.
  • E. None of the above.

  • Correct Answer
  • By applying AttributeUsageAttribute to the custom attribute's class definition. 


  • Attributes problems


    Search Results


    • 1. Which of the following is correct ways of applying an attribute?

    • Options
    • A.
      [WebService (Name = "CuriousTab", Description = "CURIOUSTAB WebService")] 
      class AuthenticationService: WebService
      { /* .... */}
    • B.
      <WebService ( Name : "CuriousTab", Description : "CURIOUSTAB WebService" )> 
      class AuthenticationService: inherits WebService
      { /* .... */}
    • C.
      <WebService ( Name = "CuriousTab", Description = "CURIOUSTAB WebService" )> 
      class AuthenticationService: extends WebService
      { /* .... */}
    • D.
      [WebService ( Name := "CuriousTab", Description := "CURIOUSTAB WebService")] 
      class AuthenticationService: inherits WebService
      { /* .... */}
    • Discuss
    • 2. The [Serializable()] attribute gets inspected at

    • Options
    • A. Compile-time
    • B. Run-time
    • C. Design-time
    • D. Linking-time
    • E. None of the above
    • Discuss
    • 3. Which of the following CANNOT be a target for a custom attribute?

    • Options
    • A. Enum
    • B. Event
    • C. Delegate
    • D. Interface
    • E. Namespace
    • Discuss
    • 4. 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.

    • Options
    • A. 1 only
    • B. 1, 5
    • C. 2, 3
    • D. 4, 5
    • E. None of the above
    • Discuss
    • 5. Once applied which of the following CANNOT inspect the applied attribute?

    • Options
    • A. CLR
    • B. Linker
    • C. ASP.NET Runtime
    • D. Visual Studio.NET
    • E. Language compilers
    • Discuss
    • 6. Which of the following statements are correct about Attributes in C#.NET?

      1. On compiling a C#.NET program the attibutes applied are recorded in the metadata of the assembly.
      2. On compilation all the attribute's tags are deleted from the program.
      3. It is not possible to create custom attributes..
      4. The attributes applied can be read from an assembly using Reflection class.
      5. An attribute can have parameters.

    • Options
    • A. 1 and 2 only
    • B. 2 and 4 only
    • C. 1, 4 and 5 only
    • D. All of the above
    • E. None of the above
    • Discuss
    • 7. Which of the following correctly describes the contents of the filename AssemblyInfo.cs?

    • Options
    • A. It contains method-level attributes.
    • B. It contains class-level attributes.
    • C. It contains assembly-level attributes.
    • D. It contains structure-level attributes.
    • E. It contains namespace-level attributes.
    • Discuss
    • 8. Which of the following statements are correct about inspecting an attribute in C#.NET?

      1. An attribute can be inspected at link-time.
      2. An attribute can be inspected at compile-time.
      3. An attribute can be inspected at run-time.
      4. An attribute can be inspected at design-time.

    • Options
    • A. 1, 2
    • B. 3, 4
    • C. 1, 3, 4
    • D. All of the above
    • E. None of the above
    • Discuss
    • 9. Which of the following forms of applying an attribute is correct?

    • Options
    • A.
      < Serializable() > class sample
      { /* ... */ }
    • B.
      (Serializable()) class sample
      { /* ... */ }
    • C.
      [ Serializable() ] class sample
      { /* ... */ }
    • D.
      Serializablef) class sample
      { /* ... */ }
    • E. None of the above
    • Discuss
    • 10. Which of the following statements are correct about Attributes used in C#.NET?

    • Options
    • 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.
    • E. The CLR can change the behaviour of the code depending upon the attributes applied to it.
    • Discuss


    Comments

    There are no comments.

Enter a new Comment