A more detailed set f instructions are attached. You are given a file consisting of students’ names in the following form:lastName,firstName middleName. (Note that a student may not have a middle name.)
Write a program that converts each name to the following form:firstName middleName lastName. Your program must read each student’s entire name in a variable and must consist of a function that takes as input a string, consists of a student’s name, and returns the string consisting of the altered name to print to the terminal. Use the string functionfindto find the index of,;the functionlengthto find the length of the string; and the functionsubstrto extract thefirstName,middleName, andlastName.
Instructions You are given a file consisting of students’ names in the following form: lastName, firstName middleName. (Note that a student may not have a middle name.) Write a program that converts each name to the following form: firstName middleName lastName. Your program must read each student’s entire name in a variable and must consist of a function that takes as input a string, consists of a student’s name, and returns the string consisting of the altered name to print to the terminal. Use the string function find to find the index of ,; the function length to find the length of the string; and the function substr to extract the firstName, middleName, and lastName.Instructions Terminal to test the code Main.ccp Given text file This is what I have to work with: This is the Text as listed in Ch7_Ex9Data.txt: Miller, Jason Brian Blair, Lisa Maria Gupta, Anil Kumar Arora, Sumit Sahil Saleh, Rhonda Beth Spilner, Brody Screen shot(s) of assignment: This is what the assignment grading looks for when the code is executed: Tasks (what the checks look for when grading): 0.00 out of 10.00 Program Outputs Correctly 1 0 out of 1 checks passed. Review the results below for more details. Checks Test CaseIncomplete Successful Output Input Output Results Jason Brian Miller Lisa Maria Blair Anil Kumar Gupta Sumit Sahil Arora Rhonda Beth Saleh Brody Spilner Show Details