Explain the Scope of
public/private/friend/protected/protected friend.
Public is accessible to all classes and projects.
Private is accessible only in the block that is declared.
Friend is accessible only to all classes in the current
project only.
Protected is accessible to only the class the is declared
and the class that is derived from that class.
Protected Friend is accessible to all the classes in the
current project and all classes derived from those classes.
| Is This Answer Correct ? | 4 Yes | 0 No |
Explain about .Net products?
i have 2 functions, int add(int a,int b); double add(int a,int b); does this code implement overloading? if not what will be the error?
How will you load dynamic assembly? How will create assemblies at run time?
0 Answers InfoAxon Technologies,
What is STA in .NET?
Explain how garbage collection works?
Give An example of a ctype and directcast.
How to debug failed assembly binds?
What is Custom attribute? How to create? Namespace? If I'm having custom attribute in an assembly, how to say that name in the code? What is Reflection in .NET?
3 Answers Accenture, CC Soft, Infosys,
Tell us the difference between the while and for loop. Provide a .net syntax for both loops?
How does u handle this COM components developed in other programming languages in .NET?
What is heap and what is stack?
Explain what are the deferred execution and the immediate execution in linq?