WHAT'S THE OOPS BASIC OOPS CONCEPTS IN DOTNET
Answer / guest
The basic oop's concepts in .net are :-
1. Data hiding.
2. Data Abstraction.
3. Polymorphism
4. Encapsulation.
5. Inheritance.
6. Exception handling.
| Is This Answer Correct ? | 7 Yes | 3 No |
What are the advantages of inheritance?
26 Answers IBS, TCS,
what are the different types of qualifier in java?
What is abstraction in oop?
What is virtual class and friend class?
Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box
What is abstraction in oops with example?
What is difference between pop and oop?
write a code for this:trailer recordId contains a value other than 99, then the file must error with the reason ‘Invalid RECORD_ID’(User Defined Exception).
how to find the largest of given numbers in an array
How to handle exception in c++, For example in a functions i am assigning memory to some variables and also in next instructions in am dividing one variable also. If this functions generates a error while allocating memory to those variable and also while dividing the variable if i divide by zero then catch block how it will identify that this error has cone from perticular instruction
if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?
In the following declaration of main, "int main(int argc, char *argv[])", to what does argv[0] usually correspond? 1) The first argument passed into the program 2) The program name 3) You can't define main like that