You are on page 1of 5

SCHOOL OF COMPUTER SCIENCE AND ENGINEERING

FINAL ASSESSMENT
March 2021 SEMESTER
MODULE NAME: OBJECT-ORIENTED PROGRAMMING
MODULE CODE: ITS63304
EXAM DURATION: 24 HOURS
EXAM DATE/ TIME: 08/07/2021 8.00 AM
SUBMISSION DEADLINE: 09/07/2021 8.00 AM
This paper consists of 5 printed pages, inclusive of this page.

Instruction to Candidates:
1. Answer ALL questions
2. This is an open book examination; student is not allowed to transcribe directly (cut and
paste) any material from another source into their submission.
3. The Turnitin similarity for this module is 20% overall and lesser than 1% from a single source,
excluding program source codes.
4. Severe disciplinary action will be taken against those caught violating assessmentrules such
as colluding, plagiarizing or transcribing.
5. The final assessment answers handed in should be within 5 -12 pages in total for non-
programming modules, with a spacing of 1.5 and a font of 12pt Times New Roman.
6. Submission link is here. (Do not submit the question paper)
7. The breakdown of exam questions by Module Learning Outcome(s) and itsassociate
weightage is as follows:
MLO Section(s)/ Question(s) Marks

MLO1 Section A / 15
MLO2 Section B / 15
TOTAL / 30
8. Start each answer on a separate page.
9. Complete the front cover of the examination answer booklet and question paper.Write the
question numbers attempted on the front cover of the answer booklet.

Object-Oriented Programming ITS63304 Mike Kok 202103


Coursework Category Individual Assessment
Coursework Name Project – Final Assessment
Coursework Weightage (%) 30
Total Expected Assessment Time 24 Hours
(hours)
Assessment Deliverable(s) Written report and source code

PROJECT SCENARIO

You have been hired as a Java programmer by Taylor’s University. Your first
project is to develop a library management system that can improve the book
borrowing and management process. There are two types of membership; staff
and student. Books can be borrowed by staff and student. Staff may borrow a
maximum of 10 books at any one time, while student can borrow a maximum of 5
books. Staff can borrow book for a maximum duration of 90 days, while student
can borrow book for a maximum duration of 30 days. Book can be renewed if it
not overdue or reserved by someone. Librarian can access the program to check
user borrowing record and display popular book. Overdue book will be charged
at a rate of RM1 for each day and can only be returned by librarian.

Section A (Total 15 marks)

Based on the scenario given, provide your answer for below questions;

1. Design the objects, its features and required behaviours for the given system.
You need to provide justification for your design. (5 marks)

2. Describe where and how you can use encapsulation to secure your code. You
need to justify your answer. (3 marks)

3. Describe where and how you can use exception to minimize possible bug in
your code. You need to justify your answer (3 marks)

4. Suggest two features that are unique and important in this system. Elaborate
the feature in detail. (4 marks)

2
Section B (Total 15 marks)

Develop appropriate console program according to the project scenario. This


program must be able to perform below task.

1. The program can be login by librarian and member (student and staff).

2. Common functionality for both types of user are;

a. Search and view for book by author, title, and category

b. View book status (available, borrowed, and reserved)

c. View book synopsis

3. Functionality specific for librarian are;

a. Manage member’s details.

b. Manage book inventory.

c. View total for each book status.

d. View popular book based on number of time it has been borrowed.

e. Search and view member borrowing status and late charges

f. Return overdue book and collect overdue charges.

g. View member borrowing history

h. View total overdue charges received

4. Functionality specific for member are;

a. View personal detail.

b. View personal book status, remaining days to due for borrowed


books, and how many more book(s) can still borrow.

i. Perform borrow, if book status is available.

ii. Perform return or renew, if borrowed by the user and not due.

3
iii. Reserve book, if borrowed by others.

5. Logout system to allow another user to login.

6. Exit system will close the program.

You must submit your source code with appropriate comment as a


Microsoft Word or PDF document via TiMES.

4
Marking Rubric

Criteria Excellent Good Average Poor Your


(8 - 10) (6 - 7) (4-5) (0-3) Score
User Very Moderate Average Not appealing
Interface appealing and appealing and appealing and nor user-
user-friendly user-friendly user-friendly friendly

Usability Run smoothly Less smoothly Lagging and Lagging and


and bug free and some same bug very buggy
bugs

Source code Very logical Moderate Average Not logical


and well logical logical
organized

TOTAL

NOTE: Total marks will be adjusted to a maximum of 15% allocated for Section B of this
assignment.

You might also like