Answer the following questions:
Question 1: Create a class called Date that adds three pieces of information as automatic properties-a month (type int), a day (type int) and a year (type int).
Question 2: Your class should have a constructor that initializes the three automatic properties and assumes that the values provided are correct. Provide a method DisplayDate that displays the month, day and year separated by forward slashes (/).
Question 3: Write a test app named DateTest that demonstrates class Date's capabilities.
I got stuck in some question can you help me out.