<AptiCode/>

The ultimate platform for developers to practice, compete, and grow. Join our community of passionate coders today.

TwitterLinkedIn

Platform

ProblemsCompilerAptitude TestsContests

Company

About UsContactRewardsContribute

Legal

Terms of ServicePrivacy PolicyShipping PolicyRefund Policy

© 2025 AptiCode. All rights reserved.

Made withfor developers

topic/Delegates

Question NoTitleTypeMarks
708.In which of the following areas are delegates commonly used?RemotingSerializationFile Input/OutputMultithreadingEvent handling
MCQ
5
707.Which of the following statements is incorrect about delegate?
MCQ
5
709.Which of the following is the necessary condition for implementing delegates?
MCQ
5
710.Which of the following statements are correct about the delegate declaration given below?delegate void del(int i);On declaring the delegate a class calleddelwill get created.The signature of del need not be same as the signature of the method that we intend to call using it.Thedelclass will be derived from theMulticastDelegateclass.The method that can be called using del should not be astaticmethod.Thedelclass will contain a one-argument constructor and anlnvoke()method.
MCQ
5
711.Which of the following is the correct way to call the functionMyFun()of theSampleclass given below?class Sample { public int MyFun(int i) { Console.WriteLine("Welcome to IndiaBIX.com !" ); return 0; } }
MCQ
5