1. Create an application named StudentsStanding.java that allows you to enter student data that consists of an ID number, first name, last name, and grade point average. Have the program accept input until zzZ is entered for the ID number. Depending on whether the student's grade point average is at least 2.0, output each record either to a file of students in good standing or those on academic probation.
1. Create an application named StudentsStanding.java that allows you to enter student data that consists of an ID number, first name, last name, and grade point average. Have the program accept input until zzZ is entered for the ID number. Depending on whether the student's grade point average is at least 2.0, output each record either to a file of students in good standing or those on academic probation.
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question

Transcribed Image Text:1. Create an application named StudentsStanding.java
that allows you to enter student data that consists
of an ID number, first name, last name, and grade
point average. Have the program accept input until
zzZ is entered for the ID number. Depending on
whether the student's grade point average is at
least 2.0, output each record either to a file of
students in good standing or those on academic
probation.
2. Create an application named
StudentsStanding2.java that displays each record in
the two files created in the StudentsStanding
application. Display a heading to introduce the list
produced from each file. For each record, display
the ID number, first name, last name, grade point
average, and the amount by which the grade point
average exceeds or falls short of the 2.0 cutoff. For
example, the output should be formatted as follows
(note that the student info may vary):
![(They already wrote out the beginning of the two applications for you, just start
here)
import java.nio.file.*;
import java.io.*;
import static java.nio.file.Standardopenoption. *;
import java.util.Scanner;
import java.nio.channels FileChannel;
public class StudentsStanding {
public static void main(String[] args) {
Path goodFile = Paths.get("/root/sandbox/StudentsGoodStanding.txt"):
Path probFile = Paths.get("/root/sandbox/StudentsAcademicProbation.txt");
// Write your code here
}
}
import java.nio.file.*:
import java.io.*;
import static java.nio.file.Standardopenoption. *;
public class StudentsStanding2 {
public static void main(String[] ares) {
Path goodFile = Paths.get("/root/sandbox/StudentsGoodStanding.txt");
Path probFile = Paths.get("/root/sandbox/StudentsAcademicProbation.txt");
// Write your code here
}
public static void display(String s) {
// Write your code here
}
}
A (Cal](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F7d848391-a5b1-45af-b291-d5739fd6d88e%2F676e437e-9ba0-4216-bbc1-399a3dfef017%2F1cacvev_processed.png&w=3840&q=75)
Transcribed Image Text:(They already wrote out the beginning of the two applications for you, just start
here)
import java.nio.file.*;
import java.io.*;
import static java.nio.file.Standardopenoption. *;
import java.util.Scanner;
import java.nio.channels FileChannel;
public class StudentsStanding {
public static void main(String[] args) {
Path goodFile = Paths.get("/root/sandbox/StudentsGoodStanding.txt"):
Path probFile = Paths.get("/root/sandbox/StudentsAcademicProbation.txt");
// Write your code here
}
}
import java.nio.file.*:
import java.io.*;
import static java.nio.file.Standardopenoption. *;
public class StudentsStanding2 {
public static void main(String[] ares) {
Path goodFile = Paths.get("/root/sandbox/StudentsGoodStanding.txt");
Path probFile = Paths.get("/root/sandbox/StudentsAcademicProbation.txt");
// Write your code here
}
public static void display(String s) {
// Write your code here
}
}
A (Cal
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 3 images

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON

Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education