Solved

We Want to Create a Class That Represents a Date

Question 47

Multiple Choice

We want to create a class that represents a date.A date has a day, month, and year.For example, the date March 16, 2014 has the day 16, month 3, and year 2014.The basic framework of a date class is below: We want to create a class that represents a date.A date has a day, month, and year.For example, the date March 16, 2014 has the day 16, month 3, and year 2014.The basic framework of a date class is below:   Which of the constructor specifications below will allow this code to behave as desired?  A) public void Date (int d, int m, int y)  B) public init (int d, int m, int y)  C) public Date (int d, int m, int y)  D) public Date Date (int d, int m, int y) Which of the constructor specifications below will allow this code to behave as desired?


A) public void Date (int d, int m, int y)
B) public init (int d, int m, int y)
C) public Date (int d, int m, int y)
D) public Date Date (int d, int m, int y)

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions