Question: create the class Song with below attributes. songId - int title - String artist - String duration-double The above attributes should be private, getters, setters and parameterized constructor as required. Create class MyClass with main method. implement two static methods - findSongDurationForArtist and getSongsInAscendingOrder in MyClass class. findSongDurationForArtist method: This method will take two input parameters of Song objects and String parameter The method will return the sum of song duration from array of Song object for the giver artist (String parameter passed). If no Song with the given artist is present in the array of Song objects, then the method should return zero. getSongsInAscendingOrder method: This method will take input parameters array, of Song objects and String parameter.The method will return Song objects array in an ascending order of their duration, from the array of Song objects whose artist attribute matches with the input Stri