Question: Problem statement For this program, you are to help US Department of Homeland Security determine potential unwanted individuals at the next United Nations conference scheduled

 Problem statement For this program, you are to help US Departmentof Homeland Security determine potential unwanted individuals at the next United Nations

Problem statement For this program, you are to help US Department of Homeland Security determine potential unwanted individuals at the next United Nations conference scheduled in New York City. The US office received an encrypted list of il-intentioned people who may want to show up to the conference and needs to be able to match the names on this list to the names of actual attendees. The problem that they are facing is that they managed to only partially decrypt the names of potential troublemakers. The decryption process is taking a long time and the conference is about to begin. You need to write a program that matches the list of partially decrypted names to the names of actual attendees and generate a report that shows matching percentages between the names on both lists. While solving this problem, use procedural approach in Java. Decompose your program into methods and use lists and strings. Input You will be given two lists with names: one with all conference attendee names and another with the partially decrypted names of unwanted individuals. You will need to ask the user running your program for the specific filenames, but what we do know is that each file will be saved as a txt file, with one name per file line. All names will be written in uppercase characters and consist of two main parts separated by one blank character: the first name and the last name. There are two sample test files provided for you. They are called attendees.txt and threatlist.txt. This is the sample run of the beginning of the program (yellow highlighting indicates possible user input): Enter the name of the file with attendees names: attendees.txt Enter the name of the file with suspect names: threatlist.txt Problem statement For this program, you are to help US Department of Homeland Security determine potential unwanted individuals at the next United Nations conference scheduled in New York City. The US office received an encrypted list of il-intentioned people who may want to show up to the conference and needs to be able to match the names on this list to the names of actual attendees. The problem that they are facing is that they managed to only partially decrypt the names of potential troublemakers. The decryption process is taking a long time and the conference is about to begin. You need to write a program that matches the list of partially decrypted names to the names of actual attendees and generate a report that shows matching percentages between the names on both lists. While solving this problem, use procedural approach in Java. Decompose your program into methods and use lists and strings. Input You will be given two lists with names: one with all conference attendee names and another with the partially decrypted names of unwanted individuals. You will need to ask the user running your program for the specific filenames, but what we do know is that each file will be saved as a txt file, with one name per file line. All names will be written in uppercase characters and consist of two main parts separated by one blank character: the first name and the last name. There are two sample test files provided for you. They are called attendees.txt and threatlist.txt. This is the sample run of the beginning of the program (yellow highlighting indicates possible user input): Enter the name of the file with attendees names: attendees.txt Enter the name of the file with suspect names: threatlist.txt

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!