135.

What is the output of given code.
using System;
public abstract class Customer
{
    public abstract void Test()
    {
        Console.WriteLine("I am customer");
    }
}

No, abstract methods cannot have body. Hence, the above code will generate a compile time error stating "Customer.Test() cannot declare a body because it is marked abstract".