Changes between Version 2 and Version 3 of About


Ignore:
Timestamp:
02/03/26 18:23:21 (3 weeks ago)
Author:
216009
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • About

    v2 v3  
    88'''Short description:'''
    99
    10 This project is a university database. It keeps basic information about students, courses, exams, and schedules. For students, it stores name, index number, and contact info. For courses, it stores code, name, and professor, and for exams, the date and grade. The schedule is also in the database.
    11 The goal is to make something practical, easy to maintain, and fast. It’s made with MySQL and uses a layered architecture (Controller → Service → DAO) to keep the code organized.
    12 The system is meant to help administrative staff and professors do checks and organize things faster, and for students to see their grades and schedules.
     10This project is a university database. It keeps basic information about students, professors, subjects, and schedules. For students, it stores name, index number, and contact info. For subjects, it stores name, semester, and credits, and for professors, name and age. The schedule is also in the database.
     11The goal is to make something practical, easy to maintain, and fast. It’s made with PostgreSQL and uses a layered architecture (Controller → Service → DAO) to keep the code organized.
     12This is meant to help administrative staff and professors do checks and organize things faster, and for students to see their grades and schedules.
    1313
    1414'''Detailed description of the project:'''
    1515
    16 This system is meant for universities or higher education institutions. There are three main user roles:
     16The system is owned and maintained by the university administration or IT department to manage academic and administrative processes. 
    1717
    18 * Admin – signs up students and keeps track of stuff
     18There are three main user roles:
    1919
    20 * Professors – put in grades and track attendance
     20* Admin – signs up students and keeps track of stuff and courses
    2121
    22 * Students – see their grades and class schedule
     22* Professors – entering in grades, track attendance and reviewing student performance
    2323
    24 With this system, daily tasks get easier:
     24* Students – see their grades, class schedule and attendance records
    2525
    26 * Admins and teachers can organize student and course info more easily
     26This system helps reduce common problems such as mistakes during data entry and duplicated or inconsistent records by keeping all important academic information in one centralized database. This approach reduces manual work, lowers the chance of errors, and allows both staff and students to access accurate information more quickly and easily.
    2727
    28 * Fewer mistakes when data is entered by hand
     28Even though similar academic systems already exist, many of them are complicated, slow, or split into multiple separate parts. The proposed system is designed to be simpler and more efficient, focusing only on the most important academic data and everyday operations. By avoiding unnecessary features and keeping everything in one place, the system becomes easier to use, easier to maintain, and more suitable for daily use in a university environment.
    2929
    30 * Students and teachers will be able to find information faster
    31 
    32 * Reports and decisions can be done faster
    33 
    34 There are other systems like this, but this one is easier and faster. It keeps all the main data in one place.
     30This will be designed as a web-based application, allowing access through a browser without requiring local installation. This makes it accessible to all students and staff from different locations while keeping track of their school progress.