You have an instance of the Musician class. Try to write a chain of three scope functions, which could perform the following actions:
First function body: print the data class and calculate the length of the field
name.Second function body: pass the calculated length of the field
nameas a parameter, divide it by 4, and print the result on a new line.Third function body: pass the result of division of length by 4 as a parameter, add 10 to it, and pass this value to a variable
num.
After these steps, print the value of num in standard output on a new line.