what is the basic concept of c++(object oriented programing)
Answers were Sorted based on User's Feedback
Answer / balu(nsb)
The basic concept of c++ , some of them are:
1.Data Abstraction
2.Encapsulation.
3.Modularity.
4.Polymorphism and
5.Inheritance
| Is This Answer Correct ? | 22 Yes | 0 No |
Answer / nandkumar
As we are using classes in c++ we can share the data members
and member functions in other classes. Memory get
deallocated after the execution of program.
| Is This Answer Correct ? | 8 Yes | 4 No |
Answer / baban dongare
C++ is pure object oriented progrsmming lsngusge.It
iscompletely depends on object....
| Is This Answer Correct ? | 0 Yes | 0 No |
In which memory a class gets stored(in heap /in stack)? And why??
What are the restrictions apply to constructors and destructors?
Is c++ faster than c?
What is the difference between global variables and local variable
How are Structure passing and returning implemented by the compiler?
Which of the following operator cannot be overloaded?
What is a storage class in C++
What is the difference between C and CPP?
what does the following statement mean? int (*a)[4]
Is c++ slower than c?
Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;
given unsigned int ui1=3,ui2=7; what are the outputs of a)ui1 & ui2 b)ui1 && ui2 c)ui1 | ui2 d)ui1 || ui2 i also need the justification for the answers thank you