Delegates And Events In C Sharp - Study Mode

[#16] Which of the following is an incorrect statement about delegate?
Correct Answer

(C) delegates are type safe wrappers for function pointers

[#17] Suppose a Generic class called as SortObjects is to be made capable of sorting objects of any type(integer, single, byte etc). Then, which of the following programming constructs is able to implement the comparison function?
Correct Answer

(C) delegate

[#18] Which of the following are the correct statements about delegates?
Correct Answer

(D) All of the mentioned

[#19] Which among the given classes represents System.Collections.Generic namespace?
Correct Answer

(A) SortedDictionary

[#20] In C#, which delegate type is used to represent methods that take multiple parameters and return a value?
Correct Answer

(B) Func