Changes between Version 2 and Version 3 of About
- Timestamp:
- 02/03/26 18:23:21 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
About
v2 v3 8 8 '''Short description:''' 9 9 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 Th e systemis meant to help administrative staff and professors do checks and organize things faster, and for students to see their grades and schedules.10 This 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. 11 The 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. 12 This is meant to help administrative staff and professors do checks and organize things faster, and for students to see their grades and schedules. 13 13 14 14 '''Detailed description of the project:''' 15 15 16 Th is system is meant for universities or higher education institutions. There are three main user roles:16 The system is owned and maintained by the university administration or IT department to manage academic and administrative processes. 17 17 18 * Admin – signs up students and keeps track of stuff 18 There are three main user roles: 19 19 20 * Professors – put in grades and track attendance20 * Admin – signs up students and keeps track of stuff and courses 21 21 22 * Students – see their grades and class schedule22 * Professors – entering in grades, track attendance and reviewing student performance 23 23 24 With this system, daily tasks get easier: 24 * Students – see their grades, class schedule and attendance records 25 25 26 * Admins and teachers can organize student and course info more easily 26 This 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. 27 27 28 * Fewer mistakes when data is entered by hand 28 Even 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. 29 29 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. 30 This 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.
