Which of the following statements are correct about the C#.NET code snippet given below?
class Sample
{
static int i;
int j;
public void proc1()
{
i = 11;
j = 22;
}
public static void proc2()
{
i = 1;
j = 2;
}
static Sample()
{
i = 0;
j = 0;
}
}1. i cannot be initialized in proc1().
2.proc1() can initialize i as well as j.
3. j can be initialized in proc2().
4.The constructor can never be declared as static.
Posted Date:-2021-02-24 11:05:30