explain the concepts of oops?



explain the concepts of oops?..

Answer / ravi kumar soni

Abstraction : Hiding of inner details and showing only what
are required.
Encapsulation : Binding of data and the methods used to
access them. Eg: Classes.
Inheritance : Extending the existing functionaltiy.
Polymorphysim : Change of behavior with context.

Is This Answer Correct ?    10 Yes 2 No

Post New Answer

More OOPS Interview Questions

How to overload postfix operator in c++

1 Answers   Mphasis,


write string class as your own class in java without using any built-in function

0 Answers  


why c++ is called OOPS? waht is inherutance? what is compiler?

5 Answers  


What is oops with example?

0 Answers  


What is the default size allocated for array in the statement if size not specified " int a[] "

4 Answers   CTS,






What is destructor example?

0 Answers  


What does the code "cout<<(0==0);" print? 1) 0 2) 1 3) Compiler error: Lvalue required

15 Answers   ISTS, Wipro,


#include <string.h> #include <stdio.h> #include <stdlib.h> #include<conio.h> void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

0 Answers  


what is oppes

2 Answers  


What is the difference between pass by value,pass by pointer,pass by reference in the catch block in the exception handling in c++

1 Answers   TCS,


what does exactly the linker do?

1 Answers  


What is difference between abstraction and encapsulation?

0 Answers  


Categories