Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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