MCQOPTIONS
Saved Bookmarks
| 1. |
What would be output of the following set of code? class sample { public sample() { Console.WriteLine("THIS IS BASE CLASS constructor"); } } public class sample1 : sample { } class Program { static void Main(string[] args) { sample1 obj = new sample1(); Console.ReadLine(); } } |
| A. | Code executes successfully prints nothing |
| B. | This is base class constructor |
| C. | Compile time error |
| D. | None of the mentioned |
| Answer» D. None of the mentioned | |