adplus-dvertising
frame-decoration

Question

Which of the following statements are valid about generics in .NET Framework?

1. Generics is a language feature.
2. We can create a generic class, however, we cannot create a generic interface in C#.NET.
3. Generics delegates are not allowed in C#.NET.
4. Generics are useful in collection classes in .NET framework.
5. None of the above

a.

1 and 2 Only

b.

1, 2 and 3 Only

c.

1 and 4 Only

d.

All of the above

Answer: (c).1 and 4 Only

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 statements are valid about generics in .NET Framework? 1. Generics is a language feature. 2. We can create a generic class, however, we cannot create a...

Similar Questions

Discover Related MCQs

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

Q. Which of the following statements is valid about advantages of generics?

Q. The ‘ref’ keyword can be used with which among the following?

Q. To implement delegates, the necessary condition is?

Q. 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?

Q. To generate a simple notification for an object in runtime, the programming construct to be used for implementing this idea?

Q. Choose the incorrect statement among the following about the delegate?

Q. Which among the following is the correct statement about delegate declaration ?

delegate void del(int i);

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

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;
}