//USE JAVA FOR RECURSION OF FOLLOWING
Ask the user to enter a word, and then send it to a method whichrecursively creates a new string with an “*” place between eachcharacter. addAsterisks(“welcome”) → “w*e*l*c*o*m*e”
addAsterisks (“resursion”) → “r*e*c*u*r*s*i*o*n”
addAsterisks(“z”) → “z”
addAsterisks (“fun”) → “f*u*n
Expert Answer
Answer to //USE JAVA FOR RECURSION OF FOLLOWING Ask the user to enter a word, and then send it to a method which recursively creat…