What is abstact class? in which scinario we can use abstact
class?
Answers were Sorted based on User's Feedback
Answer / madhusudhanreddy t
Abstract is a keyword which can be used with methods and classes. When ever a class is not providing the full functionality then it is recommended to declare that class as the abstract class. When a class contains at least one abstract method then that class must be declared as abstract.
Abstract classes provide set of rules (abstract methods) which must be followed (overided) in the derived classes.
Abstract classes are not instantiable,but a reference can be created.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / satyanand
a class that contains abstract functions is abstract class.
for implementing function overriding we use it.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / shipra agarwal
Abstract classes are reffered to as inherited classes
also.They are abstracted from super classes to the sub
classes.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / suresh mediboyina
Abastact methods and implemented methods in abastact
class,we cant inheriace the class.
| Is This Answer Correct ? | 2 Yes | 4 No |
Explain cache memory? : .NET Architecture
Please tell me the .net 2.5 frame work with example
How does .net remoting work?
how u maintain data while navigating one page to another?
HttpHendler and HttpModules
If I'm developing an application that must accomodate multiple security levels though secure login and my ASP.NET web appplication is spanned across three web-servers (using round-robbin load balancing) what would be the best approach to maintain login-in state for the users?
what is just in time compilation?
Define dma? : Dot net architecture
What are bindings?
What do you know about machine.config file ?
What is a managed code is dim fs as filestreamobject is a managed code? : .NET Architecture
In LINQ TO SQL if it is possible to select the top 5 records from the particular table using select top 5.