Programming Code (840)
Scripts_Markup Code (257) Question 1: 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. *This Should Be Done IN C++
1188To Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates. String contains only lowercase characters ['a'-'z']
1003Ramesh’s basic salary is input through the keyboard. His dearness allowance is 40% of basic salary, and house rent allowance is 20% of basic salary. Write a program to calculate his gross salary.
1 2359
Write a Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
how to manage mlng timer because they don't explain what's it's function?
code to positioning of window in certain dimensions
Code for Searching for Multiple Matches with the MatchCollection Class?
What is a cdata section in xml?
how to create a 3x3 two dimensional array that will give you the sums on the left and bottom columns
What is full form of PEPSI
Definition of priority queue was given. We have to implement the priority queue using array of pointers with the priorities given in the range 1..n. The array could be accessed using the variable top. The list corresponding to the array elements contains the items having the priority as the array index. Adding an item would require changing the value of top if it has higher priority than top. Extracting an item would require deleting the first element from the corresponding queue. The following class was given: class PriorityQueue { int *Data[100]; int top; public: void put(int item, int priority); // inserts the item with the given priority. int get(int priority); // extract the element with the given priority. int count(); // returns the total elements in the priority queue. int isEmpty(); // check whether the priority queue is empty or not. }; We had to implement all these class functions.
Write a Program to find the sum of digits of a given number until the sum becomes a single digit.
Code for using a Hot Key in an ActiveX Control?
write a program that prompt the user to enter his height and weight,then calculate the body mass index and show the algorithm used
Write a program that implements a date class containing day, month and year as data members. Implement assignment operator and copy constructor in this class.
Given a spherical surface, write bump-mapping procedure to generate the bumpy surface of an orange
How we work on N tire architecture in asp.net Please give me Examle...
How to export 2 datatables of a single dataset to 2 different worksheets of a single MSExcel file ?