Q.1

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?

  • Attribute
  • Delegate
  • Namespace
  • Interface
  • Encapsulation
Q.2

Which of the following statements is incorrect about delegate?

  • Delegates are reference types.
  • Delegates are object oriented.
  • Delegates are type-safe.
  • Delegates serve the same purpose as function pointers in C and pointers to member function operators in C++.
  • Only one method can be called using a delegate.
Q.3

Which of the following is the correct way to call subroutine MyFun() of the Sample class given below?

class Sample
{
    public void MyFun(int i, Single j)
    {
        Console.WriteLine("Welcome to IndiaBIX !");
    }
}
  • delegate void del(int i);
    Sample s = new Sample();
    del d = new del(ref s.MyFun);
    d(10, 1.1f);
  • delegate void del(int i, Single j);
    del d;
    Sample s = new Sample();
    d = new del(ref s.MyFun);
    d(10, 1.1f);
  • Sample s = new Sample();
    delegate void d = new del(ref MyFun);
    d(10, 1.1f);
  • delegate void del(int i, Single]);
    Sample s = new Sample();
    del = new delegate(ref MyFun);
    del(10, 1.1f);
Q.4

Which of the following statements is incorrect about a delegate?

  • A single delegate can invoke more than one method.
  • Delegates can be shared.
  • Delegate is a value type.
  • Delegates are type-safe wrappers for function pointers.
  • The signature of a delegate must match the signature of the method that is to be called using it.
Q.5

In which of the following areas are delegates commonly used?

  1. Remoting
  2. Serialization
  3. File Input/Output
  4. Multithreading
  5. Event handling
  • 1 and 2 only
  • 1 and 5 only
  • 1, 2 and 3 only
  • 4 and 5 only
  • All of the above
Q.6

Which of the following statements are correct about a delegate?

  1. Inheritance is a prerequisite for using delegates.
  2. Delegates are type-safe.
  3. Delegates provide wrappers for function pointers.
  4. The declaration of a delegate must match the signature of the method that we intend to call using it.
  5. Functions called using delegates are always late-bound.
  • 1 and 2 only
  • 1, 2 and 3 only
  • 2, 3 and 4 only
  • All of the above
  • None of the above
Q.7

Suppose a Generic class called SortObjects is to be made capable of sorting objects of any type (Integer, Single, Byte etc.). Which of the following programming constructs should be used to implement the comparision function?

  • Namespace
  • Interface
  • Encapsulation
  • Delegate
  • Attribute
Q.8

Which of the following is the necessary condition for implementing delegates?

  • Class declaration
  • Inheritance
  • Run-time Polymorphism
  • Exceptions
  • Compile-time Polymorphism
Q.9

Which of the following statements are correct about delegates?

  1. Delegates are not type-safe.
  2. Delegate is a user-defined type.
  3. Only one method can be bound with one delegate object.
  4. Delegates can be used to implement callback notification.
  5. Delegates permit execution of a method on a secondary thread in an asynchronous manner.
  • 1 and 2 only
  • 1, 2 and 3 only
  • 2, 4 and 5 only
  • 4 and 5 only
  • All of the above
Q.10

With which of the following can the ref keyword be used?

  1. Static data
  2. Instance data
  3. Static function/subroutine
  4. Instance function/subroutine
  • 1, 2
  • 3, 4
  • 1, 3
  • 2, 4
  • All of the above
Q.11

Which of the following statements are correct about the delegate declaration given below?

    delegate void del(int i);
  1. On declaring the delegate a class called del will get created.
  2. The signature of del need not be same as the signature of the method that we intend to call using it.
  3. The del class will be derived from the MulticastDelegate class.
  4. The method that can be called using del should not be a static method.
  5. The del class will contain a one-argument constructor and an lnvoke() method.
  • 1, 2 and 3 only
  • 1, 3 and 5 only
  • 2 and 4 only
  • 4 only
  • All of the above
Q.12

Which of the following statements are correct about delegates?

  • Delegates cannot be used to call a static method of a class.
  • Delegates cannot be used to call procedures that receive variable number of arguments.
  • If signatures of two methods are same they can be called through the same delegate object.
  • Delegates cannot be used to call an instance function. Delegates cannot be used to call an instance subroutine.
Q.13

Which of the following is the correct way to call the function MyFun() of the Sample class given below?

class Sample
{
    public int MyFun(int i)
    {
        Console.WriteLine("Welcome to IndiaBIX.com !" );
        return    }
}
  • delegate void del(int i);
    Sample s = new Sample();
    deld = new del(ref s.MyFun);
    d(10);
  • delegate int del(int i);
    Sample s = new Sample(.);
    del = new delegate(ref MyFun);
    del(10);
  • Sample s = new Sample();
    delegate void del = new delegate(ref MyFun);
    del(10);
  • delegate int del(int i);
    del d;
    Sample s = new Sample();
    d = new del(ref s.MyFun);
    d(10);
Q.14

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. */
    }
}
  • delegate d(int i, Single j);
  • delegate void d(int, Single);
  • delegate int d(int i, Single j);
  • delegate void (int i, Single j);
  • delegate int sample.func(int i, Single j);
0 h : 0 m : 1 s