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 |
Is map sorted c++?
Write about c++ storage classes?
What are c++ stream classes?
To which numbering system can the binary number 1101100100111100 be easily converted to?
Find the second maximum in an array?
print first nodd numbers in descending order
What is singleton class in c++?
Explain about profiling?
A company pays its salespeople on a commission basis. The salespeople receive $200 per week plus 9 percent of their gross sales for that week. For example, a saleperson who sells $5000 worth of merchandise in a week receives $200 plus 9 percent of $5000, or a total of $650. You have been supplied with a list of items sold by each salesperson. The values of these items are as follows: Item Value A 239.99 B 129.75 C 99.95 D 350.89 Write a program that inputs one salesperson's items sold in a week (how many of item A? of item B? etc.) and calculates and displays that salesperson's earnings for that week.
What are the advantages of using pointers in a program?
What does override mean in c++?
What is auto used for in c++?