---------------------------------------- ** On computer portion. Points: 20 points total 1a/1b: 10 points 1c/1d: 4 points 2a/2b/2c: 6 points 1a) In this directory, create a program called never.cpp The program should ask the user if they want to hear a song. If they user says yes, the program should print out the following "This is the song that never ends, yes it goes on and on my friends." "Some people started singing it not knowing what it was, and they'll " "keep singing it forever just because..." After printing that song, the program should stop/exit/close. When you compile the program, make it called n (so -o n). 1b) In this directory, create a program called never2.cpp Start with your program from number 1a (e.g., cp never.cpp never2.cpp). Modify the program so that it forces the user to type either yes or no when asked if they want to hear the song. If they type something else, the program should keep asking until they type yes or no. Note - this means using a while loop... When you compile the program, make it called n2 (so -o n2). 1c) In this directory, create a program called never3 Start with your program from number 1a or number 1b. Make it so that after the program prints the song, it asks the user if they want to hear more. If they say yes, it prints the song again. If they say no, the program stops/exits/closes. Note - this will be another while loop... When you compile the program, make it called n3 (so -o n3). 1d) In this directory, create a program called never4.cpp Start with your program from 1c (or 1b, or 1a if you didn't get 1c). Modify the program so it saves a transcript from the program. It should open a text file for writing, use history.txt for the file name. Any time there is a cout, also write to the file. Any time there is a cin, also write what they typed into the file. When you compile the program, make it called n4 (so -o n4). 2a) There is one syntax error in the file triangle.cpp. Fix it so the program compiles correctly. When you compile the program, make it called t (so -o t). 2b) There is one syntax error in the file alphabet.cpp. Fix it so the program compiles correctly. When you compile the program, make it called a (so -o a). 2c) There is one syntax error in the file password.cpp. Fix it so the program compiles correctly. When you compile the program, make it called p (so -o p). !!!!!IMPORTANT!!!! When you are done with the exam, run the program finishExam that is in this directory. You will receive 0 credit for the exam if you do not run this file. Do not run finishExam until you are done!!!