Select from following answers:- It can store any type of the variable (integer,string,decimal and so on.)
- It is not type safe i.e. Compiler does not have any information about the type of variable.
- The type is decided at run time.
- Dynamic type can be passed as method argument and method also can return dynamic type.
- All Above

Above all statements are true.
For Example:-
Dynamic d;
d = 1; //can be integer
d = "vishal"; //can be string
d = "1.2M"; //can be decimal
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator