OOPs INTERVIEW QUESTION & ANSWERS
DOT Net
TAGS
11. | What is difference between abstract classes and interfaces? |
---|---|
|
12. | What is modular programming? |
---|---|
Modular programming tightly couples data and procedures for manipulating that data into units known as modules. Modules hide a program’s inner workings and data representation. However, most modular languages still allow you to use those modules in a procedural environment. |
13. | What is Indexer? |
---|---|
An indexer is a member that enables an object to be indexed in the same way as an array. |
14. | What are the difference between Structure and Class? |
---|---|
|
Posted by Ajay. (Dec 24, 2013) | |
Structure is a public access and class is a private access. |
15. | What is Polymorphism? |
---|---|
Mean by more than one form. Ability to provide different implementation based on different number/type of parameters. |
Posted by Priyesh Kumar. (May 06, 2014) | |
More than one Behavior ability... means capcity(ability) of perform task is more than one... |