why we call c++ is object oriented lanaguage

Answers were Sorted based on User's Feedback



why we call c++ is object oriented lanaguage..

Answer / 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

why we call c++ is object oriented lanaguage..

Answer / viji

Since it obeys OOPs concepts,it is said to be object
oriented language....

Is This Answer Correct ?    19 Yes 10 No

why we call c++ is object oriented lanaguage..

Answer / pritesh

bcos c++ use the whole concept of oops.
and other important thing is that c++ use object
programming language .which makes it close to real
world.thats why c++ is object oriented language.

Is This Answer Correct ?    6 Yes 2 No

why we call c++ is object oriented lanaguage..

Answer / arpit singhal

because c++ language use the concept of oop's like classes,
inheritence, ploymorphism, opertator overloading etc. but
it is not a pure object oriented language.

Is This Answer Correct ?    4 Yes 0 No

why we call c++ is object oriented lanaguage..

Answer / t.ramu(9703233794)

Because of the entire code in the program is depend upon
the object only,through the object only we can call the
data and the normal methods/functions.

Is This Answer Correct ?    1 Yes 0 No

why we call c++ is object oriented lanaguage..

Answer / kramanareddy

c++ is not pure object oriented because it has one function
is friend function it can access private data but it can
suppot some concepets in opps

Is This Answer Correct ?    1 Yes 0 No

why we call c++ is object oriented lanaguage..

Answer / raman sharma

firstly we make to a class just a example we make addition
class then we make to object "s2" then we write
{
s2.addition(parameter);
}

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More OOPS Interview Questions

design class for linked list and include constructor,destructor,insert option. struct node { int node; struct node &ptr; }

1 Answers   HSBC,


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

0 Answers  


Input: enter the value:1234 output: 1 2 3 4 write a program to get above output.....

4 Answers   Bally Technologies, IBM, SoftSol,


What is function overloading and operator overloading?

4 Answers  


diff between Virtual mathod and abstract method?

1 Answers  






What is DeadlyDiamondDeathProblem ?

1 Answers  


when to use 'mutable' keyword and when to use 'const cast' in c++

0 Answers   TCS,


what is costructor?

1 Answers  


You attempt to query the data base with this command: SELECT name, salary FROM employee WHERE salary=(SELECT salary FROM employee WHERE last name='Wagner' OR dept no=233) Choose most appropriate option from the following: 1)Sub-queries are not allowed in the where clause. 2)a multiple row sub-query used with a single row comparison operator. 3)a single row query is used with a multiple row comparison operator.

10 Answers   Zycus Infotech,


what is difference between String s=new String("vali"); String s="vali"

1 Answers  


difference between class and object

10 Answers   Chandan, IBM, Magic Soft,


What is stream in oop?

0 Answers  


Categories