wrt constructor chaining
Hi folks. The compiler provides a default constructor when we dont provide any. Let us say I provide a constructor with an argument and if I try to instantiate a subclass of that class then which constructor of the superclass gets called as it doesn't have a no-arg constructor and the compiler doesnt provide one in this case?

