Simple Plagiarism detection
Plagiarism is a serious problem in academic integrity. In thisproject, you will implement a simple plagiarism detectionalgorithm. The following is the assumptions:
1. The input is plain English text (no equation, graph, picture,or computer code. There might be numbers such “45,456”.
2. You can pick your programming language of your choice.
3. The length of input document varies. During the test, youwill be given a moderate size.
4. The input file will be in plain text with no formattingmetadata such as font.
5. During the test, you will be two text files: one as source(document S) and the second is the document being reviewed(document R).
6. You must report: a. The similarity score: the degree ofplagiarism of the document R from document S (from 0 to 1, where 1means document S is a full copy of S and zero means completelyoriginal). b. The matching parts in both documents.
***PLEASE ANSWER USING JAVA
**Please comment each line for explanation. Thankyou!
Expert Answer
Answer to Simple Plagiarism detection Plagiarism is a serious problem in academic integrity. In this project, you will implement a…