Talking C # , what is an instance field initializer? Here are two: class T { private int afield = 1024 ; private StringBuilder anotherfield = new StringBuilder() ; } Now, consider the program below, What would the output be? class B { public B(int n){Console.WriteLine(n);}