Skip to main content

The students who have expertise in object-oriented programming are required to validate their system design through developing a prototype for at least one subsystem of chosen case study

Task 
In this assignment, you are required to complete the followings to validate your system designs. 
You have the following two choices to develop detailed object-oriented design models. You also need to submit a proper documentation describing the different aspect of developed component, within 2000 words. 
Task 1: The students who have expertise in object-oriented programming are required to validate their system design through developing a prototype for at least one subsystem of chosen case study. You have an option to use any object-oriented programming language such as C++, Java, C#, etc. to develop this subsystem. 
OR 
Task 2: The students who have no expertise in object-oriented programming are required to validate their system design using interaction diagrams (i.e., communication diagrams or sequence diagrams) for at least one subsystem of chosen case study. To do this, identify 3 (three) most important use cases for the subsystem and develop communication diagrams or sequence diagrams for these use cases. 

Rationale 
The purpose of this assessment task is to develop student's skills and knowledge in : 
• validating an OO design through the construction of a prototype 
• converting design diagrams into program code 
• preparing project documentation 
• developing presentations, and through peer review to reflect on their own practice and improve their design. 
This assessment item links to the learning outcomes (LO) 1,2,3,4,5 and 6. 
Marking criteria 

Criteria HD DI CR PS FL 
Task 1 (70%): The students who have expertise in object-oriented programming are required to validate their system design through developing a prototype for at least one subsystem of chosen case study. You have an option to use any object-oriented programming language such as C++, Java, C#, etc. to develop this subsystem. 
OR 
Task 2 (70%): The students who have no expertise in object-oriented programming are required to validate their system design using interaction diagrams (i.e., communication diagrams or sequence diagrams) for at least one subsystem of chosen case study. To do this, identify all possible use cases for the subsystem and develop communication diagrams or sequence diagrams for these use cases. 

Task 1: 
Fully functional prototype using major principles of object-oriented programming such as encapsulation, data abstraction, polymorphism and inheritance. Each variable, function/method, loops, if/else statements, etc are well commented. 

OR 
Task 2: 
All possible use cases of the subsystem are identified; developed communication or sequence diagrams are correctly showing logical flow of the system activities, input/output messages, and accurate symbols/notations. 
Task 1: 
Mostly fully functional prototype using major principles of object-oriented programming such as encapsulation, data abstraction, polymorphism and inheritance. Each variable, function/method, loops, if/else statements, etc are well commented. 

OR 
Task 2: 
Major use cases of the subsystem are identified; developed communication or sequence diagrams are correctly showing logical flow of the system activities, input/output messages, and accurate symbols/notations. 
Task 1: 
Mostly fully functional prototype using major principles of object-oriented programming such as encapsulation, data abstraction, polymorphism and inheritance. Each variable, function/method, loops, if/else statements, etc are well commented. 
Minor omission only 

OR 
Task 2: 
Major use cases of the subsystem are identified; developed communication or sequence diagrams are correctly showing logical flow of the system activities, input/output messages, and accurate symbols/notations. 
Minor omission only 

Task 1: 
Prototype not always functional using major principles of object-oriented programming such as encapsulation, data abstraction, polymorphism and inheritance. Each variable, function/method, loops, if/else statements, etc are not well commented. 

OR 
Task 2: 
Some use cases of the subsystem are identified; developed communication or sequence diagrams are mostly correct showing logical flow of the system activities, input/output messages, and accurate symbols/notations. 
Task 1: 
Prototype has major errors and not working. 

OR 
Task 2: 
Few use cases of the subsystem are identified; developed communication or sequence diagrams are wrong. 
Task 1 & Task 2 (30%) 
Submit a proper documentation describing the different aspect of developed component, within 2000 words. 
Task 1 & Task 2: 
Comprehensive documentation which describes each component of developed system and has insights and awareness of deeper more subtle aspects of the case study. 
Task 1 & Task 2: 
Mostly comprehensive documentation which describes each component of developed system and has insights and awareness of deeper more subtle aspects of the case study. 
Task 1 & Task 2: 
Mostly comprehensive documentation which describes each component of developed system and has insights and awareness of deeper more subtle aspects of the case study. 
Minor emission only 
Task 1 & Task 2: 
Reasonable documentation describes few components of developed system. 
Task 1 & Task 2: 
Documentation is wrong and not matching with system components.

Logo

Get 100% Original papers from writing experts.

Comments

Popular posts from this blog

Why was this movie important to hollywood? What was the feeling of it, the colors, techniques, theme, director, style, music, anything! What was special about Alfred Hitchcock and this film?

  Directions For this assignment, you will need to choose a topic or person from any of the various eras, movements or decades that we've discussed this semester and do a presentation on them using any media format you choose. (IM CHOOSING THE MOVIE PSYCHO-    Why was this movie important to hollywood? What was the feeling of it, the colors, techniques, theme, director, style, music, anything!  What was special about Alfred Hitchcock and this film? The subject matter doesn't have to be limited to an actor, director or filmmaker, but  the topic of your presentation could be on the inventions of any of the equipment, editing or filming techniques that you've learned about.  Basically, you can pick an area to cover and do your presentation on that.  The point is that you take a deeper dive into the subject by exploring information about it that may not have been  covered in this course.  It does have to...

Account Cost Systems and Cost Behaviors

  ACC501 Account Cost Systems and Cost Behaviors You are applying for a managerial position at an innovative and rapidly growing company. This is a dynamic company that wants an individual who adds value to the organization. Managers at this company wear many hats, so the position requires managing products, people, and financial aspects of running the company. As part of the interview process, you are required to make a presentation covering four different topics, one per module for this course. You choose the company and the new product that you want to showcase in your presentation. It can be real or fictitious (based on an industry). This is for background purposes only. The presentation is to showcase your abilities and what you can contribute to the organization. IBIS World (access on the Trident Portal through the Online Library > Additional Library Resources > IBISWorld link) and BizStats have estimates of cost of goods sold ...

Starting with this provided code, add the following functionality

1.Starting with this provided code, add the following functionality: Replace hardcoded strings “Zero”, “One”, “Two”, “Three” in the ArrayList based on user typed input (use Scanner or JOptionPane classes). The user will be prompted for the String to be stored in the ArrayList and then hit enter. The user will be able to continue to add items to the ArrayList until they just hit enter without typing anything. Once the user does this (hits enter without typing anything), the program will display all of the elements of the ArrayList, both the index and String values, in a table. It will do this via a single loop making use of an iterator method. 2. Starting with this provided code, add the following functionality: Use a Try/Catch block so that the exception is caught and the program exits a bit more gracefully. Save this file as TryCatch.java. (Be sure to rename the Public Class accordingly.) Starting with the provided code again (without the Try/Catch block), fix the code so that ...