Thursday, December 27, 2012

frequently asked OOPS Interview Question and Answer

frequently asked OOPS Interview Question and Answer
What is object-oriented programming (OOP)?
OOP is a technique to develop logical modules, such as classes that contain properties, methods, fields, and events. An object is created in the program to represent a class. Therefore, an object encapsulates all the features, such as data and behavior that are associated to a class. OOP allows developers to develop modular programs and assemble them as software. Objects are used to access data and behaviors of different software modules, such as classes, namespaces, and sharable assemblies. .NET Framework supports only OOP languages, such as Visual Basic .NET, Visual C#, and Visual C++.

How can prevent your class to be inherited further?
You can prevent a class from being inherited further by defining it with the sealed keyword.

For More visit :
frequently asked OOPS Interview Question and Answer

No comments:

Post a Comment