Anas Ghanem

<ItemTemplate ".Net Tips" runat="Weblogs.asp.net" Country="WestBank" />

February 2008 - Posts

A list of some basic ASP.NET interview questions
the following are a list of some basic ASP.NET interview questions :

1. Explain the life cycle of an ASP .NET page.
2. Explain the .NET architecture.
3. What are object-oriented concepts?
4. How do you create multiple inheritance in c# and .NET?
5. When is web.config called?
6. Differences between DLL and EXE?
7. Can an assembly have EXE?
8. Can a DLL be changed to an EXE?
9. Compare & contrast rich client (smart clients or Windows-based) & browser-based Web application
10. Compare Client server application with n-Tier application
11. Can a try block have more than one catch block?
12. Can a try block have nested try blocks?
13. How do you load an assembly at runtime?
14. If I am writing in a language like VB or C++, what are the procedures to be followed to support .NET?
15. How do you view the methods and members of a DLL?
16. What is shadowing?
17. What are the collections you’ve used?
18. What is a static class?
19. What is static member?
20. What is static function?
21. What is static constructor?
22. How can we inherit a static variable?
23. How can we inherit a static member?
24. Can we use a static function with a non-static variable?
25. How can we access static variable?
26. Why main function is static?
27. What is garbage collection?
28. Can we force garbage collector to run?
29. What is reflection?
30. What are different type of JIT?
31. What are Value types and Reference types?
32. What is concept of Boxing and Unboxing?
33. What’s difference between VB.NET and C#?
34. What’s difference between System exceptions and Application exceptions?
35. What is CODE Access security?
36. What is a satellite assembly?
37. How to prevent my .NET DLL to be decompiled?
38. What’s the difference between Convert.toString and .toString() method ?
39. What is Native Image Generator (Ngen.exe)?
We have two version of the same assembly in GAC? I want my client to make choice which assembly to choose?
40. What is CodeDom?


The questions above are some of the many questions the employer may pose on you during an interview. Sometimes questions will be divided into sections. So, for example, there may be a section on Threading and you would have to answer a series of questions under that. Some other popular sections would be Remoting and Webservices, caching concepts, OOPS, ASP.NET, .NET Architecture, ADO.NET, SQL Server, UML, XML.
Hope this helps you prepare! Good luck!
Posted: Feb 22 2008, 04:41 AM by anas | with 8 comment(s)
Filed under: , ,
Clearing the cache of the webApplication when using built in development server

when working with  visual studio development server, you will notice that the application cache will remains between the runs ,

this occurs because the web application still runnings even when you close your browser( or stop the debug).

if you need to clear the cache of the web site during development ,

you need to stop the built in development server,

right click on the development server icon in windows TaskBar , and click stop .

 

Thanks

 

Posted: Feb 07 2008, 01:30 PM by anas | with no comments
Filed under: ,
More Posts