Language CDefine a class named population. Include private fields that holdstarting population birth and death rate and number of years.Write methods to set/get the values for the data members and tocalculate the growth rate estimated population and displayvalues.Write a main () method that declares a population object and usesthe methods./*outputEnter the starting population: 1000Enter the birth Rate: 30Enter the death Rate: 20Enter the number of years: 5***********************************Population Statistics***********************************Starting Population :1000Birth Rate : 30%Death Rate : 20%Number of years : 5Population growth Rate :10%Estimated population : 1500Press any key to continue*/