C# Programming - Delegates - Discussion

Discussion Forum : Delegates - General Questions (Q.No. 8)
8.
Which of the following statements are correct about delegates?
  1. Delegates are not type-safe.
  2. Delegate is a user-defined type.
  3. Only one method can be bound with one delegate object.
  4. Delegates can be used to implement callback notification.
  5. Delegates permit execution of a method on a secondary thread in an asynchronous manner.
1 and 2 only
1, 2 and 3 only
2, 4 and 5 only
4 and 5 only
All of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
2 comments Page 1 of 1.

Aaron T said:   10 years ago
Delegate is a class. So 2 is also correct.

Md aslam said:   1 decade ago
How can we implement callback notification using delegates?

Post your comments here:

Your comments will be displayed after verification.