== Use-case UC1001 Implementation - Add University ** Initiating actor:** Administrator **Other actors:** None **Description:** Administrator adds a new university to the system database. **Scenario:** 1. User selects "1. Add University" from the Admin Menu. [[Image(admin_menu.png, 800px)]] 2. System prompts the user to enter the University Name, Location, and Is_Private status. 3. User inputs the requested university details. [[Image(add_university_input.png, 800px)]] 4. System executes the SQL query to insert the new university into the database: {{{ INSERT INTO University(Name, Location, Is_Private) VALUES (?, ?, ?); }}} 5. System displays a confirmation message indicating that the university was successfully added. [[Image(add_university_success.png, 800px)]]