Changes between Initial Version and Version 1 of UseCase2001Implementation


Ignore:
Timestamp:
02/05/26 19:21:01 (3 weeks ago)
Author:
216009
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UseCase2001Implementation

    v1 v1  
     1= UseCase2001Implementation – Assign Grade to Student
     2
     3**Initiating actor:** Professor
     4
     5**Other actors:** Student
     6
     7**Description:** Professor assigns grades to enrolled students.
     8
     9**Scenario:**
     10
     111. System displays Professor Menu.
     12
     132. Professor selects Assign Grade.
     14
     153. System lists professors → Professor selects ID.
     16
     174. System lists subjects taught by that professor → selects subject.
     18
     195. System lists enrolled students → selects student.
     20
     216. System prompts for grade (6–10).
     22
     237. System executes SQL:
     24{{{
     25UPDATE Student_Subject
     26SET Final_Grade = ?, Status = 'PASSED'
     27WHERE Student_Id = ? AND Subject_Id = ?;
     28}}}
     29
     308. System confirms grade assignment.
     31[[Image()]]