Convert boolean values to strings 'Yes' or 'No'.
Instructions:
Complete the method that takes a boolean value and return a "Yes" string for true, or a "No" string for false.Thoughts:
I used a ternary operator to cheek if the parameter is true. If it...