File Encryption Filter
File encryption is the science of writing the contents of a file in a secret code. Your encryption
Although there are complex encryption techniques, you should come up with a simple one of your own. For example, you could read the first file one character at a time and add 10 to the ASCII code of each character before it is written to the second file.
Want to see the full answer?
Check out a sample textbook solutionChapter 13 Solutions
STARTING OUT WITH C++ MPL
Additional Engineering Textbook Solutions
Problem Solving with C++ (10th Edition)
SURVEY OF OPERATING SYSTEMS
Electric Circuits. (11th Edition)
Thinking Like an Engineer: An Active Learning Approach (4th Edition)
Management Information Systems: Managing The Digital Firm (16th Edition)
Starting Out with C++ from Control Structures to Objects (9th Edition)
- Why is it vital to make sure that a file is designed correctly? What difference does it make whether you know how the data in your text file is arranged if you already have it?arrow_forwardWhat can you determine about a file by looking at it's properties ?arrow_forwardPrintWriter and Scanner - text file I/O DataInputStream and DataOutputStream - binary file I/O RandomAccessFile - binary file i/o where every record is the same number of bytes so that you can seek to a specific record ObjectInputStream and ObjectOutputStream - read and write objects.arrow_forward
- What should you do if you unintentionally delete a file and then decide that you want to retrieve it?arrow_forwardWord List File Writer: Write a program that asks the user how many words they would like to write to a file, andthen asks the user to enter that many words, one at a time. The words should be writtento a file (in python)arrow_forwardWhy is it important for a program to close an open file as soon as it is done using the file? Give two reasons.arrow_forward
- This is the most effective file organization method in which one must handle all data records in a file namedarrow_forwardCreate file Write data Read data Delete data And print the messages through System.out.println. Use buffer reader to read file Programming language : Javaarrow_forwardPython The program should open a specified text file, read its contents, then use the dictionary to writean encrypted version of the file’s contents to a second file. Each character in the second file should contain the code for the corresponding character in the first file. Your program contains both encryption AND decryption functions. Please do not put them in separate programs. Your program provides a MENU that offers the user a choice to encrypt or decrypt the file and call the respective function. Your encoder function will use the Caesar Ciphe to translate the file Your encoder function will first convert all input characters to upper case. This means that the output of encrypted text should be in CAPITALS. You must use a string method to convert! Your implementation must use a dictionary Your implementation must use string methods for converting casearrow_forward
- A file's physical description differs from its logic in the following ways:arrow_forwardObjective: Practice file handling Lab Description: Write a python script (with comments) that computes the average score for an unknown number of students in a file. Specifically, your script should: Ask for a filename name (that has scores in it) Open the scores file Verify the scores file opened correctly Read the student's name and their four scores Display the student's name, all of their scores and their average to the screen Writes the students name and the scores' average to a file name "averages.csv" Close both files For example, the following are examples of correct execution (with the text in bold being the input from the user): Input file project4-inputA.txt: Output to the screen: Output file "averages.csv" Мary 76 89 82 100 Joey Please enter the scores filename: project4-inputA.txt # Student name, grade average You entered project4-inputA.txt Opened scores file project4-inputA.txt Mary scores: 76.0 89.0 82.0 100.0 average: 86.75 Joey scores: 91.0 81.0 83.0 95.0 average:…arrow_forwardIn Python Write a program that reads the contents of a text file and inserts the line numbers at the beginning of each line, then rewrites the file contentsarrow_forward