= UseCase1001 – Add University **Initiating actor:** Administrator **Other actors:** None **Description:** Administrator adds a new university into the system so that faculties and professors can later be connected to it. **Scenario:** 1. Administrator selects option “Add University” 2. System shows a form with fields: - Name - Location - Is_Private 3. Administrator enters data and submits. 4. System inserts the university into the database: {{{ INSERT INTO University(Name, Location, Is_Private) VALUES (:name, :location, :is_private); }}} 5. System confirms that the university was successfully created.