adplus-dvertising
frame-decoration

Question

Which of the following is an incorrect statement about delegate?

a.

a single delegate can invoke more than one method

b.

delegates could be shared

c.

delegates are type safe wrappers for function pointers

d.

delegate is a value type

Answer: (c).delegates are type safe wrappers for function pointers

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which of the following is an incorrect statement about delegate?

Similar Questions

Discover Related MCQs

Q. Which among the following differentiates a delegate in C#.NET from a conventional function pointer in other languages?

Q. Choose the incorrect statement about delegates?

Q. Which of the following statements is correct about a delegate?

Q. Choose the statements which makes delegate in C#.NET different from a normal class?

Q. Which of the following are the correct statements about delegates?

Q. Incorrect statements about delegates are?

Q. Select the modifiers which control the accessibility of the delegate:

Q. What is meant by the term generics?

Q. Are generics in C# are same as the generics in java and templates in C++?

Q. Choose the advantages of using generics?

Q. What does the following code block defines?

class Gen<T>
{
T ob;
}

Q. What does the following code set defines?

public Gen(T o)
{
ob = o;
}

Q. Select the type argument of an open constructed type?

Q. Which among the given classes is present in System.Collection.Generic.namespace?

Q. Which of these is a correct way of defining generic method?

Q. Which of these type parameters is used for generic methods to return and accept any type of object?

Q. Which of given statements are valid about generics in .NET Framework?

Q. Which of the following is a valid statement about generic procedures in C#.NET are?

Q. Which among the given classes represents System.Collections.Generic namespace?