MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output for selective code ? public static void Main(string[] args) { p(); void p() { Console.WriteLine("hi"); } } |
| A. | Compile time error |
| B. | Hi |
| C. | Hi infinite times |
| D. | None of the mentioned |
| Answer» B. Hi | |