Tag: programming languages
Questions Related to programming languages
Which of the following are actual uses for XML?
You can write a Console Application or a Windows Application in C#, without using Visual Studio.
The Intellisense feature of Visual Studio interactively guesses, and lists all the types, methods etc. as you go on typing. How does it work?
When you write using System, at the beginning of a C# Program, the meaning of System is
When you write a program in C#, it is compiled to
How do you make a .NET Assembly public/universally visible to all applications, so that they can share it?
Consider 3 classes A,B,C. A's child class is B, B's child class is C. Inheritance hierarchy is A->B->C. You write in Main(), C obj = new C(); In what order are the constructors called?