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 |
what is importance of data sturture in a programming language?
22 Answers L&T, TCS, Wipro,
What is the full form of c++?
What is static class data?
Specify some guidelines that should be followed while overloading operators?
What are the four partitions in which c++ compiler divides the ram?
Which field is used in c++?
What is an operator in c++?
Describe protected access specifiers?
What is the standard template library (stl)?
Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work
Can you pass a vector to a function?
What operator is used to access a struct through a pointer a) >> b) -> c) *