what is the definition of incapsulation

Answer Posted / arun

Wrapping up of data and methods in to a single entity is known as encapsulation

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you define a class in oop?

730


What causes polymorphism?

673


hi all..i want to know oops concepts clearly can any1 explain??

1757


Please send ford technologies placement paper 2 my mail id

1735


What is the difference between a constructor and a destructor?

707






What are the benefits of oop?

703


#include #include #include #include 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

2258


What is class and object in oops?

701


Get me an image implementation program.

1637


class type to basic type conversion

1940


What is abstraction in oops with example?

874


What is the advantage of oop over procedural language?

724


What is difference between data abstraction and encapsulation?

708


How to improve object oriented design skills?

656


What is the diamond problem in inheritance?

673