51.
What will be the output of the following C# code snippet?
class Program
{
    static void Main(string[] args)
    {
        int x, y = 1;
        x = 10;
        if(x != 10 && x / Convert.ToInt32(0) == 0)
        Console.WriteLine(y);
        else
        Console.WriteLine(++y);
        Console.ReadLine();
    }
}

52.
What will be the output of the following C# code snippet?
class equality
{
    public  int x;
    public int y;
    public Boolean isequal()
    {
        return (x == y);
    }
}    
class Program
{
    static void Main(string[] args)
    {
        equality obj = new equality();
        obj.x = 5;
        obj.y = 5;
        Console.WriteLine(obj.isequal());
        Console.ReadLine();
    }
}

53.
What will be the output of the following C# code?
class box 
{
    int width;
    int height;
    int length;
    int volume;
    void volume(int height, int length, int width) 
    {
        volume = width * height * length;
    } 
}    
class Prameterized_method
{
    public static void main(String args[]) 
    {
       box obj = new box();
       obj.height = 1;
       obj.length = 5;
       obj.width = 5;
       obj.volume(3, 2, 1);
       Console.WriteLine(obj.volume);  
       Console.ReadLine();      
    } 
}

54.
What will be the output of the following C# code snippet?
class equality 
{
    int x;
    int y;
    boolean isequal()
    {
        return(x == y);  
    } 
}    
class Output 
{
    public static void main(String args[]) 
    {
       equality obj = new equality();
       obj.x = 5;
       obj.y = 5;
       Console.WriteLine(obj.isequal());
    } 
}