Using Visual Studios ;
Create a class named Course. A Course will consist of adepartment name (3 characters all upper case), number (long between100 and 999), semester (string — Fall, Spring or Summer), year(long 1964 and higher), credit hours(long between 1-8) and grade (2characters). Write the appropriate “check”, get and set routines.Also write the Equals and ToString methods. Finally write a programmake and test Course objects.
Solution