Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nivasharmaa/academic-performance-tracker
A Java program for reading student data from a file, calculating average test grades, determining letter grades, and computing overall average grades. Utilizes OOP principles, file I/O operations, and grade calculation algorithms.
https://github.com/nivasharmaa/academic-performance-tracker
algorithms data-processing file-io grade-calculation java object-oriented-programming student-database
Last synced: 5 days ago
JSON representation
A Java program for reading student data from a file, calculating average test grades, determining letter grades, and computing overall average grades. Utilizes OOP principles, file I/O operations, and grade calculation algorithms.
- Host: GitHub
- URL: https://github.com/nivasharmaa/academic-performance-tracker
- Owner: nivasharmaa
- Created: 2024-01-05T04:35:16.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-07T04:16:00.000Z (6 months ago)
- Last Synced: 2024-11-18T07:17:03.998Z (2 months ago)
- Topics: algorithms, data-processing, file-io, grade-calculation, java, object-oriented-programming, student-database
- Language: Java
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Academic Performance Tracker
## Overview
The Academic Performance Tracker project is a Java program designed to read student data from a file named `student_data.txt`, calculate the average test grade for each student, and determine the corresponding letter grade. Additionally, it calculates and prints the overall average test grade for all students.## Features
- **File Reading**: Reads student names and their test scores from a specified text file.
- **Average Calculation**: Computes the average test grade for each student.
- **Grade Determination**: Assigns letter grades based on average scores.
- **Overall Average**: Calculates and prints the overall average test grade for all students.## Concepts Covered
- Object-Oriented Programming (OOP)
- File I/O Operations
- Data Processing
- Grade Calculation Algorithms