DIFFERENCE BETWEEN KEYWORDS 'VAR' AND 'DYNAMIC'?
A. 'Var' is introduced in C# (3.0) and 'Dynamic' is introduced in C# (4.0)
B. 'Var' is a type of variable where declaration is done at compile time by compiler while 'Dynamic' declaration is achieved at runtime by compiler
C. For 'Var' Error is caught at compile time and for 'Dynamic' Error is caught at runtime
D. All of the mentioned
Answer: Option D
Related Questions on Basic Syntax and Data Types in C Sharp
What is the correct syntax to declare a variable in C#?
A. num = int;
B. var num;
C. num int;
D. int num;
What is the purpose of the 'var' keyword in C#?
A. Declares a constant
B. Converts a variable to string
C. Implicitly declares a variable
D. Defines a method

Join The Discussion