basic_concepts_quiz.md - brainchildservices/curriculum GitHub Wiki
-
Describe Application Startup in c# ?
Application startup occurs when the execution environment calls a designated method, which is referred to as the application's entry point.
-
What did entry point method called?
Main
-
List several signature of entry point method?
- static void Main() {...}
- static void Main(string[] args) {...}
- static int Main() {...}
- static int Main(string[] args) {...}
-
Which type of value we use to terminate application?
int value
-
What control the excecution environment ?
Application termination returns
-
What happens when entry point method is void?
which terminates that method, or executing a return statement that has no expression
-
What is Declarations in a C# program ?
Declarations in a C# program define the constituent elements of the program.
-
Why we using namespaces ?
Using Namespaces which can contain type declarations and nested namespace declarations.
-
What is the uses of type declaration?
Type declaration are used to define Classes, Structs, Interfaces, Enums & Delegates