51.
Choose the correct statement about System.Type namespace.

52.
What will be the output of the following C# code snippet?
class test
{
    public   int a;
    public  int b;
    public  test(int i, int j)
    {
        a = i;
        b = j;
    }
    public void meth(test o)
    {
        o.a *= 2;
        o.b /= 2;
    }
}    
class Program
{
    static void Main(string[] args)
    {
        test obj = new test(10, 20);
        obj.meth(obj);
        Console.WriteLine(obj.a + " " + obj.b);    
        Console.ReadLine();
    }
}

53.
Which among the following statements are not correct about a namespace used in C#.NET?

57.
Which among the given statements are correct about the Stack collection?

Read More Section(Miscellaneous in C Sharp)

Each Section contains maximum 100 MCQs question on Miscellaneous in C Sharp. To get more questions visit other sections.