<AptiCode/>

Question 731: public class Test { }What is the prototype of the default constructor?

tcs
wipro
infosys
general
aptitude
declarations-and-access-control

Option A and B are wrong because they use the default access modifier and the access modifier for the class ispublic(remember, the default constructor has the same access modifier as the class).Option D is wrong. The void makes the compiler think that this is a method specification - in fact if it were a method specification the compiler would spit it out.