MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following statements should be added to the subroutine fun( ) if the C#.NET code snippet given below is to output 9 13? |
| A. | Console.WriteLine(base.i + " " + i); |
| B. | Console.WriteLine(i + " " + base.i); |
| C. | Console.WriteLine(mybase.i + " " + i); |
| D. | Console.WriteLine(i + " " + mybase.i); |
| Answer» C. Console.WriteLine(mybase.i + " " + i); | |