why c++ is called OOPS?
waht is inherutance?
what is compiler?
Answer Posted / nikhita
Basically c++ is know as object oriented programing
language because,the variables we declare are known as
objects,and moreover the progrmas we write are dependent on
the objects we create.
Inheritance means to extract features from one class to
creare another new class
the extract class is know as base class and the extacted
class is known as derived class.The derived class has all
the features of both the classes.Mainly the inheritance is
used to aviod the redundant code from several classes.
compiler is a program used to convert the data written in
computer language into user defined language.It gives the
o/p which is converted into the userdefined language.
Is This Answer Correct ? | 20 Yes | 6 No |
Post New Answer View All Answers
What is pointer in oop?
What is the problem with multiple inheritance?
Prepare me a program for the animation of train
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
Who invented oop?
Can private class be inherited?
What is ambiguity in inheritance?
to find out the minimum of two integer number of two different classes using friend function
What are main features of oop?
Which method cannot be overridden?
what type of question are asked in thoughtworks pair programming round ?
Explain the advantages of inheritance.
How can you overcome the diamond problem in inheritance?
What is pure oop?
can we make game by using c