Description
I need a correct solution, including a screenshot, that covers all questions and is 100% accurate.
Description and Instructions
Project
Deadline: Sunday 01/12/2025 @ 23:59
[Total Mark is 14]
Student Details:
Name:
Name:
Name:
Name:
CRN:
ID:
ID:
ID:
ID:
Instructions:
• You must submit two separate copies (one Word file and one PDF file) using the Assignment Template on
Blackboard via the allocated folder. These files must not be in compressed format.
• It is your responsibility to check and make sure that you have uploaded both the correct files.
• Zero mark will be given if you try to bypass the SafeAssign (e.g. misspell words, remove spaces between
words, hide characters, use different character sets, convert text into image or languages other than English
or any kind of manipulation).
• Email submission will not be accepted.
• You are advised to make your work clear and well-presented. This includes filling your information on the cover
page.
• You must use this template, failing which will result in zero mark.
• You MUST show all your work, and text must not be converted into an image, unless specified otherwise by
the question.
• Late submission will result in ZERO mark.
• The work should be your own, copying from students or other resources will result in ZERO mark.
Restricted – مقيد
• Use Times New Roman font for all your answers.
Description and Instructions
Pg. 01
Description and Instructions
Learning
Outcome(s):
CLO4
Project Instructions
Develop a
•
Total Marks = 14
program based on
•
Group Size = 3- 4 members.
specification
•
Submit all files: Project Report (Word and PDF) on blackboard before 01.12.2025.
This project enables the students to integrate the covered knowledge and skills in this
course.
using
programming
Marks will be given based on your submission and quality of the contents.
•
language
elements
including syntax,
data types,
conditional
statement, control
description.
•
arrays, objects
and classes
CLO5
Demonstrate
Integrated
Development
Environment
(IDE) for the
editing, building,
debugging, and
testing of
programs
Restricted – مقيد
Implement the Simple Courses Management System according to the requirements
provided.
•
Write a Java program to demonstrate the functionality of the system.
•
Include comments in your code to explain the purpose of each class, method, and
important code block.
structures,
procedures and
Each group must come up with a unique solution for the project based on the below
•
Test your program with different scenarios to ensure that it works as expected.
Description and Instructions
Pg. 01
Learning
Outcome(s):
CLO4
Project Title: University Management System
Description: A university wants to build a simple management system to manage
information about students and employees. The system should allow the user to enter,
Develop a
store, and display data in an organized way while applying object-oriented
program based on
programming (OOP) concepts such as inheritance, polymorphism, encapsulation, and
specification
abstraction.
using
programming
language
elements
including syntax,
data types,
Requirments:
1- Class Design
Parent Class: Person
•
Attributes:
conditional
statement, control
structures,
o
name (String)
o
id (int)
procedures and
arrays, objects
•
and classes
Methods:
o
(overridden in subclasses).
CLO5
Demonstrate
Integrated
displayDetails() → Abstract or base method to display details
Subclass: Student (extends Person)
•
Attributes:
Development
Environment
o
course (String)
(IDE) for the
o
grade (double)
editing, building,
debugging, and
testing of
programs
Restricted – مقيد
•
Methods:
o
isPass() → Returns true if grade ≥ 50, else false.
Description and Instructions
Pg. 01
o
displayDetails() → Displays student info + pass/fail result.
Subclass: Employee (extends Person)
•
Attributes:
o
•
(none extra at this level)
Methods:
o
calculateSalary() → Abstract or overridden in child classes.
Subclass: FullTimeEmployee (extends Employee)
1.
Attributes:
o
2.
monthlySalary (double)
Methods:
o
calculateSalary() → returns monthlySalary.
o
displayDetails() → Displays name, ID, and salary.
Subclass: PartTimeEmployee (extends Employee)
•
•
Restricted – مقيد
Attributes:
o
hourlyRate (double)
o
hoursWorked (int)
Methods:
o
calculateSalary() → returns hourlyRate * hoursWorked.
o
displayDetails() → Displays name, ID, and calculated salary.
Description and Instructions
Pg. 01
2- User Interface (Console-based)
The program should:
1. Present a menu with options:
o
Add Student
o
Add Full-time Employee
o
Add Part-time Employee
o
Display All Records
o
Exit
2. Take user input with proper validation (e.g., grade must be between 0–100,
salary must be non-negative).
3. Store all objects (Students and Employees) in a single ArrayList.
3- Sample Data:
•
Add at least four sample courses to the system during initialization.
4- Functionality:
Restricted – مقيد
•
Add multiple Students and Employees.
•
Store them in a single list.
•
For students → display pass/fail status.
•
For employees → display calculated salary.
•
Display all records in a unified format.
Description and Instructions
Pg. 01
Learning
Outcome(s):
CLO4
Develop a
program based on
5- Error Handling:
•
Validate input (e.g., no negative salary, grades between 0–100, hours ≥ 0).
•
Handle invalid menu options (show error and re-prompt).
•
Prevent duplicate IDs (optional advanced requirement).
specification
using
programming
language
6- Testing:
The system must be tested for:
elements
•
Correct inheritance behavior (all subclasses inherit from Person).
including syntax,
•
Polymorphism (calling displayDetails() should behave differently based on
object type).
data types,
conditional
•
Input validation (reject invalid grades, salaries, etc.).
statement, control
•
Correct salary and pass/fail computation.
structures,
•
Loop functionality (multiple entries).
procedures and
•
(Include screenshots of your output)
arrays, objects
and classes
CLO5
Demonstrate
Integrated
Development
Environment
(IDE) for the
editing, building,
debugging, and
testing of
programs
Restricted – مقيد
Purchase answer to see full
attachment