Delegates Questions and Answers

Practice Mode
Showing 10 of 32 questions
Q1
Which of the following statements is incorrect about delegate?
  • A Delegates are reference types.
  • B Delegates are object oriented.
  • C Delegates are type-safe.
  • D Delegates serve the same purpose as function pointers in C and pointers to member function operators in C++.
Answer: Option
Q2
In which of the following areas are delegates commonly used?     Remoting     Serialization     File Input/Output     Multithreading     Event handling
  • A 1 and 2 only
  • B 1 and 5 only
  • C 1, 2 and 3 only
  • D 4 and 5 only
Answer: Option D
Q3
Which of the following is the necessary condition for implementing delegates?
  • A Class declaration
  • B Inheritance
  • C Run-time Polymorphism
  • D Exceptions
Answer: Option A
Q4
Which of the following statements are correct about the delegate declaration given below?     delegate void del(int i);     On declaring the delegate a class called del will get created.     The signature of del need not be same as the signature of the method that we intend to call using it.     The del class will be derived from the MulticastDelegate class.     The method that can be called using del should not be a static method.     The del class will contain a one-argument constructor and an lnvoke() method.
  • A 1, 2 and 3 only
  • B 1, 3 and 5 only
  • C 2 and 4 only
  • D 4 only
Answer: Option B
Q5
Which of the following statements are correct about a delegate?     Inheritance is a prerequisite for using delegates.     Delegates are type-safe.     Delegates provide wrappers for function pointers.     The declaration of a delegate must match the signature of the method that we intend to call using it.     Functions called using delegates are always late-bound.
  • A 1 and 2 only
  • B 1, 2 and 3 only
  • C 2, 3 and 4 only
  • D All of the above
Answer: Option C
Q6
Which of the following statements are correct about delegates? Delegates are not type-safe.     Delegate is a user-defined type.     Only one method can be bound with one delegate object.     Delegates can be used to implement callback notification.     Delegates permit execution of a method on a secondary thread in an asynchronous manner.
  • A 1 and 2 only
  • B 1, 2 and 3 only
  • C 2, 4 and 5 only
  • D 4 and 5 only
Answer: Option C
Q7
Which of the following statements are correct about delegates?
  • A Delegates cannot be used to call a static method of a class.
  • B Delegates cannot be used to call procedures that receive variable number of arguments.
  • C If signatures of two methods are same they can be called through the same delegate object.
  • D Delegates cannot be used to call an instance function. Delegates cannot be used to call an instance subroutine.
Answer: Option B
Q8
Which of the following are the correct ways to declare a delegate for calling the function func() defined in the sample class given below? class Sample {     public int func(int i, Single j)     {         /* Add code here. */     } }
  • A delegate d(int i, Single j);
  • B delegate void d(int, Single);
  • C delegate int d(int i, Single j);
  • D delegate void (int i, Single j);
Answer: Option C
Q9
Suppose on pushing a button an object is to be notified, but it is not known until runtime which object should be notified. Which of the following programming constructs should be used to implement this idea?
  • A Attribute
  • B Delegate
  • C Namespace
  • D Interface
Answer: Option B
Q10
Which of the following statements is incorrect about a delegate?
  • A A single delegate can invoke more than one method.
  • B Delegates can be shared.
  • C Delegate is a value type.
  • D Delegates are type-safe wrappers for function pointers
Answer: Option C
Questions and Answers for Competitive Exams Various Entrance Test