I only want problem 3 to be done. Read everything carefully please. Has to be do
ID: 3685262 • Letter: I
Question
I only want problem 3 to be done. Read everything carefully please. Has to be done in python. Many thanks in advance. Have to create a class called ChangeJar with 10 methods.
April 2, 2016 (Saturday) April 3, 2016 (Sunday) April 9, 2016 (Saturday) April 10, 2016 (Sunday) April 16, 2016 (Saturday) April 17, 2016 (Sunday) April 23, 2016 (Saturday) April 24, 2016 (Sunday) April 30, 2016 (Saturday) 2. Implement a function called first mondays with a single parameter, namely a year y. The function should print the dates of the first Monday of every month in that year For example, first mondays (2016) should print First Mondays of 2016: 4, 2016 January February 1, 2016 March 7, 2016 April 4, 2016 May 2, 2016 June 6, 2016 July 4, 2016 August 1, 2016 September 5, 2016 October 3, 2016 November 7, 2016 December 5, 2016 3. There are many situations in which one needs a schedule of dates occuring at regular intervals between a start date and an end date. For example, a course instructor may want to give an online class quiz every 12 days starting on September 6, 2016 and ending on or before October 31, 2016. Implement a function called interval schedule with three parameters: start.date (a Date object), end date (a Date object), and interval (a positive integer). The function should return the list of dates that occur every interval days, starting on start date and ending on or before end date. Note that the function is returning a list of Date objects. For example, interval_schedule(Date (9, 6, 2016), Date (10, 31, 2016), 12) should return a list of Date objects. If you print the elements of this list, you should see: September 6, 2016 September 18, 2016 September 30, 2016 October 12, 2016 October 24, 2016 Problem 3 [40 points | Change Jar. In this problem, you are asked to create a class for change jars. A change jar contains an arbitrary collection of coins i.e., quarters, dimes, nickels, and pennies. There are no dollar bills of any denomination in a change jar. We may use change jars to get exact change for some specified amount, or we may add more coins into it. CreateExplanation / Answer
Problem 3:
import java.util.Calender;
Method 1:
String s = "2016-09-06";
String e = "2016-10-31";
Method 2:
Use any of the codes in your program to solve the problem. Goodluck.