0% found this document useful (0 votes)
5 views1 page

Machine Test (Java-B)

The document outlines a problem statement for creating a Course Management Application with functionalities such as adding, viewing, updating, and deleting courses. It specifies the Course entity structure and includes additional features like retrieving courses by instructor. Students are encouraged to implement the required functionalities and consider enhancing the application with extra features.

Uploaded by

vaishnavid166
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

Machine Test (Java-B)

The document outlines a problem statement for creating a Course Management Application with functionalities such as adding, viewing, updating, and deleting courses. It specifies the Course entity structure and includes additional features like retrieving courses by instructor. Students are encouraged to implement the required functionalities and consider enhancing the application with extra features.

Uploaded by

vaishnavid166
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Machine Test

Java-B

Course Management System


Problem Statement:
Create a Course Management Application with the following functionalities:
Course Entity
• id (Primary Key, Auto-Generated)
• courseName (String, not null)
• fee (Double, not null)
• instructor (String, not null)
Functional Requirements
Develop a user interface to perform the following operations:
1. Add a New Course
o Provide a form to add a new course with all the required fields.
2. View All Courses
o Display a list of all courses in a tabular format.
3. Update Course Details
o Provide an option to update the details (e.g. name, fee, instructor) of an
existing course.
4. Delete a Course
o Allow the user to delete a course from the list.
Additional Features:
• Retrieve by Instructor:
o Add functionality to retrieve courses by instructor.

Note to Students:
You are encouraged to implement the required functionalities as mentioned in the problem statement.
However, if you wish to enhance the application by adding additional operations such as sorting,
advanced filtering, or any other feature, feel free to do so.

You might also like