Describe Hunter's Algorithm for building decision trees. Build adecision out of the following (\"training\") dataset. The goal is todetermine if a person is a defaulted borrower given values for thefirst four attributes. How do you deal with the attribute AnnualIncome with real values? For a person with values for the firstfour attributes 11, No, Single, 180K, is this person adefaulted borrower or not according to your newly built decisiontree?
ID Home Owner             Marital Status    Annual Income   Defaulted Borrower
1           Yes                      Single                 125K                   No
2           No                       Married              100K                   No
3           No                       Single                 70K                     No
4           Yes                      Married              120K                   No
5           No                       Divorced            95K                     Yes
6           No                       Married              60K                     No
7           Yes                      Divorced            220K                   No
8           No                       Single                 85K                     Yes
9           No                       Married              75K                     No
10          No                       Single                 90K                     Yes