what are the disadvantages of C++?
Answer Posted / sarath
c++ is not pure object oriented.
c++ supports pointers that's why there is no security for data
c++ is platform dependent.
| Is This Answer Correct ? | 13 Yes | 28 No |
Post New Answer View All Answers
Write a program to reverse a string using recursive function?
What is object in oop with example?
Question: Implement a base class Appointment and derived classes Onetime, Daily, Weekly, and Monthly. An appointment has a description (for example, “see the dentist”) and a date and time. Write a virtual function occurs_on(int year, int month, int day) that checks whether the appointment occurs on that date. For example, for a monthly appointment, you must check whether the day of the month matches. Then fill a vector of Appointment* with a mixture of appointments. Have the user enter a date and print out all appointments that happen on that date.
What do you mean by Encapsulation?
What is the main purpose of inheritance law?
What is overloading in oop?
What is the difference between procedural programming and oops?
Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?
What is difference between inheritance and polymorphism?
which feature are not hold visual basic of oop?
Can abstract class have normal methods?
write a code for this. serial_number contained in the header of the file will be read , if this serial number is less than a previous serial number within a successfully processed file, or is the same as another serial number within a successfully processed file, or if the field contains anything other than 7 digits, then the file must error with the reason ‘Invalid SERIAL_NUMBER’.
Can an interface inherit a class?
What are objects in oop?
Is enum a class?