how to maintain the session state?
what is Abstract class and interface and inheritence with
example?

Answers were Sorted based on User's Feedback



how to maintain the session state? what is Abstract class and interface and inheritence with exam..

Answer / anitha

Session object can be used for storing session-specific
information that needs to be maintained between server
round trips and between requests for pages.various modes of
storing ASP.NET session is:InProc,StateServer,and SQL
SERVER state.

Abstract classes provide a simple and easy way to
version your components. By updating the base class, all
inheriting classes are automatically updated with the
change. Interfaces, on the other hand, cannot be changed
once created. If a new version of an interface is required,
you must create a whole new interface.
If we want to provide common, implemented
functionality among all implementations of your component,
use an abstract class. Abstract classes allow you to
partially implement your class, whereas interfaces contain
no implementation for any members.

Inheritance is getting properties from parent class
to child class.

Is This Answer Correct ?    5 Yes 1 No

how to maintain the session state? what is Abstract class and interface and inheritence with exam..

Answer / prabhat

session are maintain on the server,session are created for
the individual user,the data are stored in the session
butare secured,

all methods are abstract method in the interface,and we can
not use any modifier before method in interface calsses.
Abstact class having abstract method as well as user defind
method,

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Dot Net Framework Interview Questions

Tell me about the internal working of Garbage collector?

3 Answers   Honeywell,


What is mvc entity framework?

0 Answers  


mention in what all scenarios entity framework can be applicable?

0 Answers   Microsoft,


what is complex type?

0 Answers   Microsoft,


How can Bitwise OR operator reresents in .Net?? To which alias name a variable points to if it is declared as "int" variable??

1 Answers  






What are delegates?where are they used

1 Answers  


Explain the advantages and disadvantages of ASP.Net MVC over ASP.NET?

0 Answers  


What are Satellite Assemblies? How you will create this?

4 Answers  


How does assembly versioning work?

1 Answers  


What are the ways to show data grid inside a data grid for a master details type of tables?

1 Answers  


explain why t4 entity is important in entity framework?

0 Answers   Microsoft,


How to Insert a TextBox value in to Sql database using C#.Net coding

2 Answers  


Categories