Interview Questions In .Net
Interview questions for three plus expirencied IT Professionals in asp.net, javascript, object oriented programming concepts. dot net fundamentals. Some of the questions appear quite simple, hope this will help for some people.
Find here Interview Questions for .Net
Below questions have been asked in one of the interview that was faced recently.
1-Boxing and unboxing
2-Partial class,what are advantages
3-Page directives
4-Master page and nested master pages
5-Sealed class
6-Interface and Abstract class,diffence between them
7-Impelemtation of Interface and abstract class in ado.net
8-Closures in javascript
9-How to run a server side function when browser is closed
10-Page life cycle
11-what is initializtion in page life cycle rendering
12-Asp.net Session state
13-When themes is assigned in page life cycle
14-Inproc and outproc session management
15-Performance tuning
16-What are client activated objects and server activated objects?
17-Which template must you provide, in order to display data in a Repeater control?
18-What method do you use to explicitly kill a user s session?
19-How would you implement inheritance using VB.NET/C#?
Different design pattern
ACID properties
Transaction in database
Disdvantage of triggers
Functional and Transational dependencies
Boxing and unboxing:
boxing: it converts value type into reference type
where as unboxing : it converts reference type into value type
Disadvantge:
it takes more memory in cpu to convert one data type into another datatype.