MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following C#.NET code snippets will correctly print "Hello C#.NET"? |
| A. | import System; namespace IndiabixConsoleApplication { class MyProgram { static void Main(string[] args) { Console.WriteLine("Hello C#.NET"); } } } |
| B. | using System; namespace IndiabixConsoleApplication { class MyProgram { static void Main(string[ ] args) { WriteLine("Hello C#.NET"); } } } |
| C. | using System.Console; namespace IndiabixConsoleApplication { class MyProgram { static void Main (string[ ] args) { WriteLine("Hello C#.NET"); } } } |
| D. | using System; namespace IndiabixConsoleApplication { class MyProgram { static void Main(string[] args) { Console.WriteLine("Hello C#.NET"); } } } |
| Answer» E. | |