features of OOPS

Answer Posted / vijender singh

. Encapsulation: Binding of Code and data together in a
single entity
2. Polymorphism: One name many properties (funtion
Overloading)
3. Inheritance:Acquiring properties of one object to another

Is This Answer Correct ?    15 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

#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

2169


What is the oops and benefits of oops programming?

555


How do you achieve polymorphism?

618


What is encapsulation process?

583


What is new keyword in oops?

593






What are the 4 pillars of oop?

673


Write a program to reverse a string using recursive function?

1793


What are the 3 pillars of oop?

616


What is byval and byref? What are differences between them?

1690


What is polymorphism in oops?

559


What are the features of oop?

641


How to improve object oriented design skills?

569


how to get the oracle certification? send me the answer

1670


What is the renewal class?

2169


What is the difference between inheritance and polymorphism?

593