Question: Write a program which includes the following methods:java program getName - - > Prompts the user for their first and last name, and returns the

Write a program which includes the following methods:java program
getName --> Prompts the user for their first and last name, and returns the values as a concatenated string value.
getContactInfo --> Prompts the user for their contact info, and returns the values as a concatenated string value.
getEducation --> Prompts the user for their education school, major, and graduation year, and returns the values as a concatenated string value.
getWorkExperience --> Prompts the user for their most recent work experience, and returns the data as a string.
getSkills --> Prompts the user for their list of skills, and returns them as a concatenated string.
buildResume --> Accepts the various data fields to the method as string parameter arguments. The buildResume method will print and output the data to produce a formatted resume.
main method --> Call each of the methods to gather the user input data from the user. Store the returned values into variables. Using that data, next call the buildResume method to construct and print the resume output
See the file ResumeBuilder.java in the code samples module for an example to get you started.
Suggestions: One design is to create a scanner object in main, and pass it to each method as a parameter argument.
When constructing the resume output, be sure to group all the output statements together at once, so the complete resume is output and formatted without being interrupted by user input prompts. (First prompt the user for all data points, then construct and output the resume.)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!