(Choose 1 answer)
class A {
static int x = 1;
static A(){
x++;
}
public A(){
x += 3:
}
public void Print(){
Console.WriteLine($"{x}, {++x}");}
}
class Program{
static void Main(string[] args){A obj = new A();obj.Print();}
}
The output will be:
A. 5,6