Do Online Applications Or Resume Submit

There is a conversation about job seeker confused about doing online applications or resume submit, because both ways are available to you. 75% + of all mid- huge dimension organizations need submitting on the internet programs. Usually you have the choice of linking your actual continue. My continue is a efficient continue. What amount of [...]

Read full story Comments { 0 }

ASP.NET Job Interview Questions And Answers part 1

Explain the differences between Server-side and Client-side code? Server side scripting means that all the script will be executed by the server and interpreted as needed. ASP doesn’t have some of the functionality like sockets, uploading, etc. For these you have to make a custom components usually in VB or VC++. Client side scripting means [...]

Read full story Comments { 0 }

ASP.NET Job Interview Questions And Answers

Describe the role of inetinfo.exe, aspnet_isapi.dll andaspnet_wp.exe in the page loading process. inetinfo.exe is theMicrosoft IIS server running, handling ASP.NET requests among other things.When an ASP.NET request is received (usually a file with .aspx extension),the ISAPI filter aspnet_isapi.dll takes care of it by passing the request tothe actual worker process aspnet_wp.exe.   What’s the difference [...]

Read full story Comments { 0 }

.NET framework programming Job Interview Questions And Answers

.NET framework overview Has own class libraries. System is the main namespace and all other namespaces are subsets of this. It has CLR(Common language runtime, Common type system, common language specification) All the types are part of CTS and Object is the base class for all the types. If a language said to be .net [...]

Read full story Comments { 0 }

C# and .NET Job Interview Questions And Answers

How big is the datatype int in .NET? 32 bits. How big is the char? 16 bits (Unicode). How do you initiate a string without escaping each backslash? Put an @ sign in front of the double-quoted string. What are valid signatures for the Main function? public static void Main() public static int Main() public [...]

Read full story Comments { 0 }

C# Job Interview Questions And Answers Part2

What’s the implicit name of the parameter that gets passed into the class’ set method? Value, and it’s datatype depends on whatever variable we’re changing. How do you inherit from a class in C#? Place a colon and then the name of the base class. Does C# support multiple inheritance? No, use interfaces instead. When [...]

Read full story Comments { 0 }