Wget ExercisesQuestions & AnswersWhat is the purpose of wget? CLICK FOR ANSWERTo download files over a network.What is the command for downloading the file found at https://www.launchcode.org/? CLICK FOR ANSWERwget https://www.launchcode.org/ What is the name of the file downloaded from https://www.launchcode.org/? CLICK FOR ANSWERindex.htmlHow could you view the contents of the file downloaded from https://www.launchcode.org/? CLICK FOR ANSWERcat index.html Bonus: How could you tell wget to rename the file downloaded from https://www.launchcode.org/ to launchcode-homepage.html? CLICK FOR ANSWERwget -O launchcode-homepage.html https://www.launchcode.org/