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++: Early Objects (10th Edition)
Additional Engineering Textbook Solutions
Starting Out with Python (4th Edition)
Starting Out With Visual Basic (8th Edition)
Java: An Introduction to Problem Solving and Programming (7th Edition)
Introduction To Programming Using Visual Basic (11th Edition)
Modern Database Management (12th Edition)
Starting Out with Java: From Control Structures through Data Structures (3rd Edition)
- PrintWriter 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_forwardWhat should you do if you unintentionally delete a file and then decide that you want to retrieve it?arrow_forwardat the True false beginning of a file the flag eof() is ifstream True false declares files that we can write on close() is used True false to close the graphics window data True false structures can have members of different typesarrow_forward
- Word 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_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_forward
- Python 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_forwardPERL PROGRAMMING Write a perl script that takes a text file and displays the number of words of each length in the file. For example, if the test file is: my favorite food is apples the output would be: 2: 2 4: 1 6: 1 8: 1arrow_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_forward
- In 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_forwardA file exists on the disk named students.dat. The file contains several records, and eachrecord contains two fields: (1) the student’s name, and (2) the student’s score for the final exam.Design an algorithm that changes Julie Milan’s score to 100.arrow_forwardFlat files and folders are often mistaken for databases on computers by the general public. You can tell a flat file from a computer in three ways, in your own words.arrow_forward