why we call c++ is object oriented lanaguage

Answer Posted / madhu kalla

if a language (supports)follows ObjectOrientedProgramming
concepts we can say it is a Object Oriented Programming.

Object Oriented Programing Concepts are:
1.class
2.object
3.Data Abstraction
4.Encapsulation
5.Polymorphism
6.Inheritnace
7.Message Communication

Is This Answer Correct ?    57 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to improve object oriented design skills?

570


What is abstraction and encapsulation?

576


what is the sylabus for priliminaries?

1691


What is abstraction in oops with example?

778


what are the different types of qualifier in java?

1846






What is meant by oops concept?

615


what are the ways in which a constructors can be called?

1585


Why is oop useful?

603


What is the difference between a mixin and inheritance?

524


#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

2170


What are functions in oop?

586


• What are the desirable attributes for memory managment?

1729


What is destructor give example?

608


What is constructor in oop?

591


How do you achieve runtime polymorphism?

573