Answered step by step
Verified Expert Solution
Question
1 Approved Answer
File Name: A _ Write 1 0 0 . java # 1 - program that writes a file named numberRow.txt write a set of 1
File Name: AWritejava
# program that writes a file named numberRow.txt
write a set of random numbers with values between and
the numbers should all be on the same line separated by a space
File Name: BReadWritejava
# program that reads all the numbers from the file named numberRow.txt you just made
write those numbers out to a new file numbersColumn.txt
the new file will have all the numbers listed one per line
File Name: CWriteGrid.java
# program that writes a file named numberGrid.txt
write a set of random numbers with values between a
The numbers should be arraigned as lines that each contains numbers
File Name: DWriteStats.java
# program that reads all the numbers from the file named numberGrid.txt you just made
make a new file named gridStats.txt that contains statistics about that list of numbers
grand total
totals by row
totals by column
average values of all numbers
the count of how many times the number is in the list
File Name: EWriteName.java
# program that reads the name data from the provided files named firstNames.txt and lastNames.txt
and produces a list of random names randomPeople.txt
one complete name firstname lastname per line
File Name: FSortName.java
# program that reads the file named randomPeople.txt
sort all the names alphabetically by last name
write all the unique names to a file named namesList.txt there should be no repeats
File Name: GFilesValid.java
# write a program that checks if all the program generated Activity Lab files exist in the project folder assumes Eclipse IDE
writes to the console "all complete" and lists the file names, or "missing files" list the files with "missing" in front of the absent files.
The file names to check for are:
numberRow.txt
numbersColumn.txt
numberGrid.txt
gridStats.txt
randomPeople.txt
namesList.txt
File Name: HReadFile.java
# Exercise pg from the textbook
Count characters, words, and lines in a file.
try using these files to test it on They are stored on the Github repository in the FileIODemo folder:
jabberwocky.txt
mindkiller.txt
Submission
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started