
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Question
Write a stream based program which will accept Roll Number, Name, Age and Address from user. Age and Roll-no should be numeric. Handle with built-in exception. None of the field should be blank. Handle with custom exception. Ask user, whether to write the data in the file. If answer is yes, then data is saved into a file as an object (User can write many records in the file), otherwise terminate the current program. Write another program to display all the records saved into the file. write java code
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 nowThis is a popular solution!
Step by stepSolved in 2 steps with 2 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.Similar questions
- Write a series of statements that produces a file with the name supplied by fileName and a single line stating "This Is File:" followed by the file's name. Check that the file's buffer is empty and that all system resources used by these statements have been freed. (Assume any exceptions are handled elsewhere.)arrow_forwardSuppose a file named Exercise13_15.dat has been created from the preceding exercise. Write a program that reads the Loan objects from the file and computes the total of the loan amount. Suppose you don’t know how many Loan objects are in the file. Use the eof() to detect the end of the file.arrow_forwardModify the program that you wrote for Exercise 5 so it handles the following exceptions: • It should handle any IOError exceptions that are raised when the file is opened, and data is read from it. • It should handle any ValueError exceptions that are raised when the items that are read from the file are converted to a number.arrow_forward
- Write a program that updates and displays game stats for football players (Defense) at a local high school. Your program will read a file containing the names and ids of the defensive players. The program will prompt for the following data for each player Number of tackles Number of sacks Number of interceptions Once the stats have been provided, the program will update the player information. After all players have been updated, the program will display details for all players and write the updated information to a new file In Pythonarrow_forwardAssignment: Exception Handling and Text 10 Problem Statement: Write a program that reads a file named "input.txt" that contains integers separated by whitespace (space, tab, or newline). The program should calculate the sum of all the integers in the file, ignoring any non-numeric values. Requirements: The program should define a class named "FileSumCalculator". The class should have a method named "calculateSum" that takes a file path as a parameter and returns the sum of all the integers in the file. The method should handle any exceptions that might occur during the file reading and sum calculation. The program should print the sum of all the integers in the file to the console. Examples: 1. If the contents of the "input.txt" file are: 123 4 five 67 The program should print: Sum: 23arrow_forwardWrite a program that writes a series of random numbers to a file. Each random number should be in the range 1 through 500. The application should let the user user specify how many random numbers the file will hold. Use an exception to make sure that an integer was typed in by the user for the #to generate. If not reask the user for input in the except clause until they input the correct number. You should do this in one function named mainarrow_forward
- Which file open flag causes the contents of an existing file to be discarded and the file size reduced to zero?arrow_forwardA thrown exception may contain more information about what caused the exception. True or Falsearrow_forwardWhich of the following for-loop correctly reads and prints records (one record per line) that are stored in the file which was successfully opened with the file stream fileIn? The file contains a list of student records. Each record is stored in two lines; student name and student age are stored in separate lines. A. for student in fileIn :name = fileIn.readline().rstrip()age = int(fileIn.readline())print(name, age) B. for student in fileIn :name = student.rstrip()age = int(fileIn.readline())print(name, age) C. for student in fileIn :name = student.rstrip()age = int(student)print(name, age) D. for student in fileIn :name = student age = int(fileIn.readline())print(name, age)arrow_forward
- 4. Read from File Create a program that reads the values in the temperature data file created in the previous program. The program will display each temperature value in the file and calculate and display the average temperature. Be sure your program handles exceptions.arrow_forwardAssume that there is a data file named as “data.txt”. This data file contains integer values in multiple lines, as shown below. You are asked to write statements in the main() method to open the file, read and print out the total of all the values (should be 55). Place your code into try-catch block so that the FileNotFoundException will be caught and an error message will be printed if no such file exists. data.txt 1 2 3 4 5 6 7 8 9 10 import java.util.*; import java.io.*; public class ReadAndPrint { pubilc static void main() { // your code goes here }arrow_forwardWrite a Java program to perform the following tasks:The program should ask the user for the name of an input file (scores.txt). Theinput file should contain 10 records. Each record in the input file shouldconsist of a name and score between 0 and 100 (inclusive). Eg: fred 95The program should open the input file as a text file (if the input file does notexist it should throw an exception) and read the contents line by line.Store each record in an array of a user-defined Score class. The Score classcan be kept very simple with 2 instance variables, a default constructor, getand set methods for the instance variables.Now process the array of Score class objects to determine:• The average of all scores• The largest score• The smallest scorearrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

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