Answer Posted / dhananjay
in c++, data binding refers to make the data/variables and
functions which operate on these data into a single unit.
in c++ the unit is class.
| Is This Answer Correct ? | 23 Yes | 2 No |
Post New Answer View All Answers
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 is difference between pop and oop?
Templates mean
What is data binding in oops?
What is abstraction encapsulation?
Can destructor be overloaded?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
what is graphics
State what is encapsulation and friend function?
#include
What is polymorphism what is it for and how is it used?
Why do we use polymorphism in oops?
Describe these concepts: Polymorphism, Inheritance and Abstraction.
Can main method override?
String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?