Oop is the common abbreviation for object-oriented programming.
Can static class be inherited in super class? If so how. what are the various types of OOPS in dot net architecture?What is the method that is used in dot net (like top-down, water fall)
Answered by: santosh.ifc
View all answers by santosh.ifc
Member Since Oct-2007 | Answered On : Mar 19th, 2008
the static method will be inherited to the sub class only
Waterfall model is used for this technique
Static class can be inherited in super class.
.NET architecture is COMPONENT ORIENTED not a OOPS and bottom-up method is used.
Editorial / Best Answer
Answered by: shahistha
Answered On : Dec 5th, 2005OOPs is an Object Oriented Programming language,which is the extension of Procedure Oriented Programming language.OOps reduce the code of the program because of the extensive feature of Polymorphism.OOps have many properties such as DataHiding,Inheritence,Data Absraction,Data Encapsulation and many more.
OOPS provides features like polymorphism, inheritance, abstraction.
OOPS is abbreviated as Object Oriented Programming system in which programs are considered as a collection of objects. Each object is nothing but an instance of a class. Class is a collection of the o...