代写 R Scheme html Java software 12.04.2019

12.04.2019
48024
Applications Programming Assignment 1
Topics:
OO Design, Standard Patterns, Lists
Learning Outcomes:
This assessment task addresses the following subject learning objectives (SLOs): 1, 2 and 3
Due date:
00:00AM Monday the 13th of May
Weight:
30%
Individual Work
All work is individual. You may discuss ideas, approaches and problems, but you should write every line of code yourself except for code copied from the lecture notes, lecture code or lab code. You MUST NOT let another student see your solution code, and you MUST NOT look at another student’s solution code. More information about Academic Misconduct can be found at:
http://www.gsu.uts.edu.au/rules/student/section-16.html
UTS CRICOS PROVIDER CODE 00099F

12.04.2019
Overview
Movie Kiosk – A Movie Renting System
You are a Software Engineer at a Movie Rental company and you have been asked to write the software for their latest piece of technology, a fully automated movie renting system.
This is one of latest strategies implemented by the company that aims to increase profits and makes their products more accessible to their customer base.
However, they are struggling to find a capable programmer that can build a robust application that is fully functional and easy to use.
This requirement is urgent, as competitor companies have heard the rumors of this state-of-the-art system and they have also started working on similar prototypes.
Specification
The Movie Renting System (or Movie Kiosk) will consist of two main components, an administrative component, and a movie catalogue.
The administrative section will allow, through text-based menus, the addition and removal of customers, the addition and removal of movies in the catalogue, the display of customer records, the display of a customer’s 3 favorite movies and the top-up of customer accounts.
The catalogue will store a list of all the movies in the kiosk, a list of the genres of those movies, and a list of the available movies. The catalogue will also allow display of the movies in a number of ways, including by availability, genre and year. Finally, the catalogue will also handle the renting and return of movies.
Each customer record will include the customer’s name, their chosen ID number, their current balance, which movies they are currently renting and their full renting history.
Each movie record will include the movie’s title, its genre and the year in which it was made.
An aside
While reading the first part of the specification, you will notice there is a lot going on.
􏰃 How many functions did you identify?
􏰃 How many classes did you identify?
􏰃 What are the fields in each class?
􏰃 How many goals did you identify?
􏰃 How many patterns did you think of that might be applicable?
UTS CRICOS PROVIDER CODE 00099F

12.04.2019
This assignment will be challenging and you will probably want to manage your time well.
􏰃 How long do you think it will take you to code the functions?
􏰃 How long do you think it will take you to code each goal?
􏰃 A good rule of thumb is to think of an estimate, and then multiply that number by 3 or 4!
􏰃 To manage your time well, you may need to figure out which parts of the assignment you can start early.
􏰃 Which parts can you start now?
􏰃 Which parts can you start in week 6?
If you complete parts in the same week that you learn the topics (while they are fresh in your mind), they
will take less time to complete.
The User Interface
Below is a sample I/O trace. The red text indicates user input (you are not expected to print color text). Not every conceivable scenario is shown below and you should submit your code to PLATE to see what specific scenarios are tested. You should also implement your solution in the same order as PLATE’s test cases so that you can receive incremental feedback and marks as you progress.
Welcome to the Movie Kiosk! Please make a selection from the menu: 1. Explore the catalogue.
2. View your customer record.
3. Show you favourite movies.
4. Top up account.
5. Enter Admin Mode.
X. Exit the system.
Enter a choice: 5
Welcome to the administration menu: 1. List all customers.
2. Add a customer.
3. Remove a customer.
4. List all movies.
5. Add a movie to the catalogue.
6. Remove a movie from the catalogue. R. Return to the previous menu. Enter a choice: 2
Adding a new customer.
Enter a new ID: 101
Enter the customer’s name: Jaime
Enter the customer’s initial balance: 5 Customer added.
Welcome to the administration menu: 1. List all customers.
2. Add a customer.
3. Remove a customer.
4. List all movies.
5. Add a movie to the catalogue.
6. Remove a movie from the catalogue. R. Return to the previous menu. Enter a choice: 2
UTS CRICOS PROVIDER CODE 00099F

12.04.2019
Adding a new customer.
Enter a new ID: 102
Enter the customer’s name: Luke
Enter the customer’s initial balance: 3 Customer added.
Welcome to the administration menu: 1. List all customers.
2. Add a customer.
3. Remove a customer.
4. List all movies.
5. Add a movie to the catalogue.
6. Remove a movie from the catalogue. R. Return to the previous menu. Enter a choice: 1
The Kiosk has the following customers: 101 Jaime $5
102 Luke $3
Welcome to the administration menu: 1. List all customers.
2. Add a customer.
3. Remove a customer.
4. List all movies.
5. Add a movie to the catalogue.
6. Remove a movie from the catalogue. R. Return to the previous menu. Enter a choice: 5
Adding a new movie.
Enter the title of the movie: Titanic Enter the year: 1997
Enter the genre: Drama
Enter price: 4
Added Titanic to catalogue.
Welcome to the administration menu:
1. List all customers.
2. Add a customer.
3. Remove a customer.
4. List all movies.
5. Add a movie to the catalogue.
6. Remove a movie from the catalogue. R. Return to the previous menu. Enter a choice: 5
Adding a new movie.
Enter the title of the movie: Matrix Enter the year: 1999
Enter the genre: SciFi
Enter price: 4
Added Matrix to catalogue.
Welcome to the administration menu: 1. List all customers.
2. Add a customer.
3. Remove a customer.
4. List all movies.
5. Add a movie to the catalogue.
6. Remove a movie from the catalogue. R. Return to the previous menu. Enter a choice: 4
UTS CRICOS PROVIDER CODE 00099F

12.04.2019
The Kiosk has the following movies: 1997 Titanic Drama $4
1999 Matrix SciFi $4
Welcome to the administration menu: 1. List all customers.
2. Add a customer.
3. Remove a customer.
4. List all movies.
5. Add a movie to the catalogue.
6. Remove a movie from the catalogue.
R. Return to the previous menu.
Enter a choice: R
Welcome to the Movie Kiosk! Please make a selection from the menu: 1. Explore the catalogue.
2. View your customer record.
3. Show you favourite movies.
4. Top up account.
5. Enter Admin Mode.
X. Exit the system.
Enter a choice: 1
Welcome to the Catalogue! Please make a selection from the menu: 1. Display all movies.
2. Display all available movies.
3. Display all genres.
4. Display movies in a genre.
5. Display all movies by year.
6. Rent a movie.
7. Return a movie.
R. Return to previous menu.
Enter a choice: 3
The Kiosk has movies in the following genres: Drama
SciFi
Welcome to the Catalogue! Please 1. Display all movies.
2. Display all available movies. 3. Display all genres.
4. Display movies in a genre. 5. Display all movies by year. 6. Rent a movie.
7. Return a movie.
R. Return to previous menu. Enter a choice: 6
Enter a valid customer ID: 101 Enter the title of the movie you Movie rented.
Welcome to the Catalogue! Please 1. Display all movies.
2. Display all available movies. 3. Display all genres.
4. Display movies in a genre. 5. Display all movies by year. 6. Rent a movie.
7. Return a movie.
R. Return to previous menu. Enter a choice: 2
The following movies are available: 1997 Titanic Drama $4
make a selection from the menu:
wish to rent: Matrix
make a selection from the menu:
UTS CRICOS PROVIDER CODE 00099F

12.04.2019
Welcome to the Catalogue! Please make a selection from the menu: 1. Display all movies.
2. Display all available movies.
3. Display all genres.
4. Display movies in a genre. 5. Display all movies by year. 6. Rent a movie.
7. Return a movie.
R. Return to previous menu. Enter a choice: 6
Enter a valid customer ID: 102
Enter the title of the movie you wish to rent: Titanic You don’t have sufficient funds to rent this movie.
Welcome to the Catalogue! Please make a selection from the menu: 1. Display all movies.
2. Display all available movies.
3. Display all genres.
4. Display movies in a genre. 5. Display all movies by year. 6. Rent a movie.
7. Return a movie.
R. Return to previous menu.
Enter a choice: R
Welcome to the Movie Kiosk! Please make a selection from the menu: 1. Explore the catalogue.
2. View your customer record.
3. Show you favourite movies.
4. Top up account.
5. Enter Admin Mode.
X. Exit the system.
Enter a choice: 4
Enter a customer ID: 102 Enter the top-up amount: 5
Transaction complete.
Luke’s balance was: $3
Luke’s current balance is: $8
Welcome to the Movie Kiosk! Please make a selection from the menu: 1. Explore the catalogue.
2. View your customer record.
3. Show you favourite movies.
4. Top up account.
5. Enter Admin Mode.
X. Exit the system.
Enter a choice: 1
Welcome to the Catalogue! Please 1. Display all movies.
2. Display all available movies. 3. Display all genres.
4. Display movies in a genre.
5. Display all movies by year. 6. Rent a movie.
7. Return a movie.
R. Return to previous menu. Enter a choice: 6
Enter a valid customer ID: 102 Enter the title of the movie you Movie rented.
make a selection from the menu:
wish to rent: Titanic
UTS CRICOS PROVIDER CODE 00099F

12.04.2019
Welcome to the Catalogue! Please make a selection from the menu: 1. Display all movies.
2. Display all available movies.
3. Display all genres.
4. Display movies in a genre. 5. Display all movies by year. 6. Rent a movie.
7. Return a movie.
R. Return to previous menu. Enter a choice: X
Requirements
􏰃 Your design will consist of exactly the following classes with the listed fields, declared as indicated. You may not add or remove classes or fields; however, you may add constructors, functions and procedures to complete your design (in fact, you will have to!). You should pay careful attention to the tests on PLATE, as these will help guide you with some (but not all) of these methods.
􏰃 To help visualize the design, a partial class diagram has been provided
􏰃 Classes – your design will consist of these 6 classes:
1. Kiosk
2. Catalogue
3. Customer
4. Movie
5. Genre
6. In (this is just the class you’ve been using throughout the labs to facilitate simpler I/O – just copy it over)
UTS CRICOS PROVIDER CODE 00099F

12.04.2019
􏰃 Fields – the classes will have the following fields: public class Kiosk {
private Catalogue catalogue;
private List customers;
}
public class Catalogue {
private Kiosk kiosk;
private List moviesAvailable;
private List moviesRented;
private List genres;
}
public class Customer {
private int ID;
private String name;
private int balance;
private List currentlyRented;
private List rentingHistory;
}
public class Movie {
private String title; private int year; private int price; private Genre genre;
}
public class Genre {
private String name; }
􏰃 The fields also have some additional requirements and structures:
Lists all have the abstract type of List<>, but must be instantiated with a concrete type that implements the List<> behavior (you will see two of these in week 6, you can choose either – you may also want to think about why you might do things this way).
UTS CRICOS PROVIDER CODE 00099F

12.04.2019
􏰃 Constructors – the constructors of the class have the following requirements:
1. All constructors initialize the fields of their class.
2. The Kiosk constructor takes no parameters.
3. The Catalogue constructor takes a single parameter, the Kiosk which it belongs to.
4. The Customer constructor takes three parameters, the ID, name, (initial) balance, corresponding to the three fields identically named.
5. The Movie constructor takes four parameters, corresponding to the title, year, genre and price, with the same types as the respective fields.
6. The Genre constructor takes a single parameter, the name of the genre.
􏰃 toString() – several of the classes will have a toString() function, with the following formatting:
1. Customer.toString() will produce a string of the form: \t\t$ e.g.
50 Homer Simpson $ 15
Note: \t is the escape code for the tab character. 2. Movie.toString() will produce a string of the form:
\t\t<genre name>\t$ <price> e.g.<br /> 1997 Titanic Drama $ 4 3. Genre.toString() will produce a string of the form:<br /> <genre name><br /> e.g.<br /> SciFi<br /> 􏰃 The main method of the program will be in the Kiosk class.<br /> 􏰃 Top-Ups: The Kiosk should also implement a top-up system. A customer should be able to top up their account by simply providing their ID and the top-up amount. When renting a movie, the price of the chosen movie will be deducted from the customer’s account decreasing their balance. If the customer does not have sufficient funds, they will not be able to rent any movies.<br /> UTS CRICOS PROVIDER CODE 00099F</p> <p> 12.04.2019<br /> Advanced Requirements<br /> To achieve a mark of >84, you must implement a favorite reporting function (or set of functions). This corresponds to an item in the main menu (see the trace above). Choosing this option should prompt the user for a valid customer ID, and then display the user’s 3 most rented movies, in order of highest renting frequency to lowest. If the user has only rented less than three movies, it will show those movies alone. A sample partial I/O trace follows, again red text is used to indicate user input:<br /> Welcome to the Movie Kiosk! Please make a selection from the menu: 1. Explore the catalogue.<br /> 2. View your customer record.<br /> 3. Show you favourite movies.<br /> 4. Top up account. 5. Enter Admin Mode. X. Exit the system. Enter a choice: 3<br /> Enter a customer ID: 101 Jaime’s favourite movies are: 1997 Titanic Drama $4<br /> 1999 Matrix SciFi $4<br /> 1991 The Silence of the Lambs<br /> Expected Workload<br /> Crime $4<br /> The time to do the assignment to a credit/distinction level has been estimated at 25 hours for a student of average ability who has completed all the tutorial and lab exercises.<br /> Online Support<br /> The Assignment 1 discussion board has been set up on UTSOnline so that students can ask questions, and other students can reply. The course coordinator will only post a reply only if the student response was wrong, or in the case of correcting a mistake in the assignment specification.<br /> You must not post or share Java code to the discussion board. The board is there to help you, not to provide the solution. Posting your code is academic misconduct and will reported. Each time this rule is violated, the code will be removed and replaced with a comment of the form: “Strike 1: Posting code”. After 3 strikes, the discussion board will be deleted because it did not work.<br /> FAQs (Frequently Asked Questions) and their answers will be posted on PLATE alongside the assignment specification. If you have a question, check the FAQ first; it may already be answered there. You should read the FAQ at least once before you hand in your solution, but to be safe check it every couple of days. Anything posted on the FAQ is considered to be part of the assignment specification. The FAQ will be frozen (no new entries) two days before the due date; no questions will be answered after it is frozen.<br /> If anything about the specification is unclear or inconsistent, contact the subject coordinator who will try to make it clearer by replying to you directly and posting the common questions and answers to the FAQ. This is similar to working on the job, where you ask your client if you are unsure what has to be done, but then you write all the code to do the task. Email huan.huo@uts.edu.au to ask for any clarifications or corrections to the assignment.<br /> UTS CRICOS PROVIDER CODE 00099F</p> <p> 12.04.2019<br /> PLATE Marking<br /> Your solution is marked for correctness by PLATE (https://plate.it.uts.edu.au/) by comparing the output of your system to the output of the benchmark system. You can submit a solution to PLATE many times; I urge you to do this, so you receive credit for your work. Submission takes the same form as for the labs, you must package your assignment in a JAR file, including the source code. PLATE will test the features of your program in a certain order: Classes and fields, then constructors, then goals from basic to advanced. PLATE cannot test the more advanced goals until the basic goals are working. To receive marks, you must pass PLATE’s test cases in the order in which PLATE tests them.<br /> Your code is marked by software, so you can get a good mark by fooling or spoofing the software. If you spoof a task worth N marks, you receive a penalty of 2*N marks.<br /> Test Cases<br /> For testing purposes, please make sure that you have a data list of movies and customers as follows:<br /> Title<br /> Year<br /> Genre<br /> Price<br /> Matrix<br /> 1999<br /> SciFi<br /> 3<br /> Titanic<br /> 1997<br /> Drama<br /> 4<br /> The Silence of the Lambs<br /> 1991<br /> Crime<br /> 3<br /> Jurassic Park<br /> 1993<br /> SciFi<br /> 4<br /> Terminator 2<br /> 1991<br /> SciFi<br /> 3<br /> ID<br /> Name<br /> Balance<br /> 101<br /> Jaime<br /> 10<br /> 102<br /> Luke<br /> 10<br /> 103<br /> William<br /> 1<br /> Submission and Return<br /> Your solution is to be submitted to PLATE at https://plate.it.uts.edu.au/ under Applications Programming / Assessments / Assignment 1, in the same manner as your labs – package in a JAR file including the source code. Your provisional mark and feedback is generated immediately each time you submit to PLATE. However, analysis of spoofing, plagiarism, collusion and general cheating is done in the two weeks following the due date. If you are suspected of Academic Misconduct, I will forward your case to the Misconduct Committee and will notify you by email.<br /> There is no scheduled late submission period. An extension of up to one week may be given by the subject coordinator before the due date; you have to supply documentary evidence of your claim. An extension CANNOT be given after the due date. You may also apply for special consideration for reasons including unexpected health, family or work problems. More information about how to apply for special consideration can be found at: http://www.sau.uts.edu.au/assessment/consideration.html.<br /> UTS CRICOS PROVIDER CODE 00099F</p> <p> 12.04.2019<br /> Marking Scheme<br /> The marks for the assignment are divided into the following functionality components (note that individual tests may test several functionality components, and a functionality component may be tested by several tests):<br /> Functionality Component Mark Allocation<br /> Fields 8<br /> Constructors 6<br /> Main Menu 5<br /> Admin Menu 5<br /> Catalogue Menu 5<br /> Add Customer 5<br /> Add Movie 5<br /> Remove Customer 5<br /> Remove Movie 5<br /> Show Movies 5<br /> Show Movies by Genre 5<br /> Rent 5<br /> Return 5<br /> Customer Record 5<br /> Favorites 16<br /> Account Top-up 10<br /> This adds to a mark out of 100, at makes up 30% of your final assessment mark.<br /> UTS CRICOS PROVIDER CODE 00099F</p> </div><!-- .entry-content .clear --> </div> </article><!-- #post-## --> <nav class="navigation post-navigation" aria-label="Post navigation"> <span class="screen-reader-text">Post navigation</span> <div class="nav-links"><div class="nav-previous"><a title="代写 Assignment (STAGE 1)" href="https://powcoder.com/2019/04/23/%e4%bb%a3%e5%86%99-assignment-stage-1/" rel="prev"><span class="ast-left-arrow">←</span> Previous Post</a></div><div class="nav-next"><a title="代写 C data structure algorithm database software KIT205 Data Structures and Algorithms Assignment 1: Data Structures" href="https://powcoder.com/2019/04/25/%e4%bb%a3%e5%86%99-c-data-structure-algorithm-database-software-kit205-data-structures-and-algorithms-assignment-1-data-structures-2/" rel="next">Next Post <span class="ast-right-arrow">→</span></a></div></div> </nav><div class="ast-single-related-posts-container ast-container--fallback"><div class="ast-related-posts-title-section"> <h2 class="ast-related-posts-title"> Related Posts </h2> </div><div class="ast-related-posts-wrapper"> <article class="ast-related-post post-38 post type-post status-publish format-standard hentry category-uncategorized tag-matlab tag-simulation"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/matlab-simulation/" target="_self" rel="bookmark noopener noreferrer">matlab simulation</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/matlab/" rel="tag">matlab代写代考</a>, <a href="https://powcoder.com/tag/simulation/" rel="tag">simulation</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-39 post type-post status-publish format-standard hentry category-uncategorized tag-c"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/ab202-assignment-1-arkapong/" target="_self" rel="bookmark noopener noreferrer">AB202 Assignment 1: Arkapong</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/c/" rel="tag">c++代做</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-40 post type-post status-publish format-standard hentry category-uncategorized tag-c"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/msc-c-programming/" target="_self" rel="bookmark noopener noreferrer">MSc C++ Programming</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/c/" rel="tag">c++代做</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-41 post type-post status-publish format-standard hentry category-uncategorized tag-prolog"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/msc-assessed-prolog-lab-exercise-2/" target="_self" rel="bookmark noopener noreferrer">MSc Assessed Prolog Lab Exercise 2</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/prolog/" rel="tag">Prolog代写代考</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-49 post type-post status-publish format-standard hentry category-uncategorized tag-c tag-uml"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/spring-session2015assignment-1/" target="_self" rel="bookmark noopener noreferrer">Spring Session:2015:Assignment 1</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/c/" rel="tag">c++代做</a>, <a href="https://powcoder.com/tag/uml/" rel="tag">UML</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-51 post type-post status-publish format-standard hentry category-uncategorized tag-uml"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/assignment-2-inception-and-elaboration/" target="_self" rel="bookmark noopener noreferrer">Assignment 2: "Inception and Elaboration"</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/uml/" rel="tag">UML</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-55 post type-post status-publish format-standard hentry category-uncategorized tag-android tag-java"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/android-app/" target="_self" rel="bookmark noopener noreferrer">android app</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/android/" rel="tag">android</a>, <a href="https://powcoder.com/tag/java/" rel="tag">Java代写代考</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-57 post type-post status-publish format-standard hentry category-uncategorized tag-java tag-junit"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://powcoder.com/2016/06/21/comp220-software-development-tools/" target="_self" rel="bookmark noopener noreferrer">COMP220: Software Development Tools</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://powcoder.com/category/uncategorized/" rel="category tag">程序代写 CS代考</a></span> / <span class="ast-taxonomy-container tags-links default"><a href="https://powcoder.com/tag/java/" rel="tag">Java代写代考</a>, <a href="https://powcoder.com/tag/junit/" rel="tag">junit</a></span></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> </div> </div> </main><!-- #main --> </div><!-- #primary --> <div class="widget-area secondary" id="secondary" itemtype="https://schema.org/WPSideBar" itemscope="itemscope"> <div class="sidebar-main" > <aside id="custom_html-2" class="widget_text widget widget_custom_html"><h2 class="widget-title">Contact</h2><div class="textwidget custom-html-widget"><ul> <li><strong>QQ: 1823890830</strong></li> <li><strong>微信号(WeChat): powcoder</strong></li> <li><img data-recalc-dims="1" class="alignnone wp-image-366" src="https://i0.wp.com/powcoder.com/wp-content/uploads/2021/01/powcoder.jpg?resize=133%2C133&ssl=1" alt="myweixin" width="133" height="133"/></li> <li><strong>Email: <a href="mailto:powcoder@163.com">powcoder@163.com</a></strong></li> </ul> <ul> <li><strong>请加微信或QQ发要求</strong></li> <li><strong>Contact me through WeChat</strong></li> </ul> </div></aside><aside id="categories-2" class="widget widget_categories"><h2 class="widget-title">Categories</h2><nav aria-label="Categories"> <ul> <li class="cat-item cat-item-245"><a href="https://powcoder.com/category/machine-learning/">机器学习代写代考 machine learning</a> </li> <li class="cat-item cat-item-242"><a href="https://powcoder.com/category/database-db-sql/">数据库代写代考 DB Database SQL</a> </li> <li class="cat-item cat-item-244"><a href="https://powcoder.com/category/data-structure-algorithm/">数据结构算法代写代考 data structure algorithm</a> </li> <li class="cat-item cat-item-239"><a href="https://powcoder.com/category/%e4%ba%ba%e5%b7%a5%e6%99%ba%e8%83%bd-ai-artificial-intelligence/">人工智能 AI Artificial Intelligence</a> </li> <li class="cat-item cat-item-247"><a href="https://powcoder.com/category/compiler/">编译器原理 Compiler</a> </li> <li class="cat-item cat-item-254"><a href="https://powcoder.com/category/network-socket/">计算机网络 套接字编程 computer network socket programming</a> </li> <li class="cat-item cat-item-240"><a href="https://powcoder.com/category/hadoop-map-reduce-spark-hbase/">大数据 Hadoop Map Reduce Spark HBase</a> </li> <li class="cat-item cat-item-241"><a href="https://powcoder.com/category/%e6%93%8d%e4%bd%9c%e7%b3%bb%e7%bb%9fosoperating-system/">操作系统OS代写代考 (Operating System)</a> </li> <li class="cat-item cat-item-250"><a href="https://powcoder.com/category/computer-architecture/">计算机体系结构代写代考 Computer Architecture</a> </li> <li class="cat-item cat-item-251"><a href="https://powcoder.com/category/computer-graphics-opengl-webgl/">计算机图形学 Computer Graphics opengl webgl</a> </li> <li class="cat-item cat-item-249"><a href="https://powcoder.com/category/nlp/">自然语言处理 NLP natural language processing</a> </li> <li class="cat-item cat-item-383"><a href="https://powcoder.com/category/%e5%b9%b6%e8%a1%8c%e8%ae%a1%e7%ae%97/">并行计算</a> </li> <li class="cat-item cat-item-253"><a href="https://powcoder.com/category/computation-theory/">计算理论 Theory of Computation</a> </li> <li class="cat-item cat-item-252"><a href="https://powcoder.com/category/computer-security/">计算机安全密码学computer security cryptography</a> </li> <li class="cat-item cat-item-246"><a href="https://powcoder.com/category/sys-programming/">系统编程 System programming</a> </li> <li class="cat-item cat-item-367"><a href="https://powcoder.com/category/%e6%95%b0%e5%80%bc%e7%a7%91%e5%ad%a6%e8%ae%a1%e7%ae%97/">数值科学计算</a> </li> <li class="cat-item cat-item-255"><a href="https://powcoder.com/category/%e8%ae%a1%e7%ae%97%e6%9c%ba%e8%a7%86%e8%a7%89compute-vision/">计算机视觉代写代考(Compute Vision)</a> </li> <li class="cat-item cat-item-248"><a href="https://powcoder.com/category/web/">网页应用 Web Application</a> </li> <li class="cat-item cat-item-401"><a href="https://powcoder.com/category/%e5%88%86%e5%b8%83%e5%bc%8f%e7%b3%bb%e7%bb%9f/">分布式系统</a> </li> <li class="cat-item cat-item-640"><a href="https://powcoder.com/category/%e7%ac%94%e8%af%95%e9%9d%a2%e8%af%95/">笔试面试</a> </li> <li class="cat-item cat-item-403"><a href="https://powcoder.com/category/%e5%87%bd%e6%95%b0%e5%bc%8f%e7%bc%96%e7%a8%8b/">函数式编程</a> </li> <li class="cat-item cat-item-243"><a href="https://powcoder.com/category/%e6%95%b0%e6%8d%ae%e6%8c%96%e6%8e%98-data-mining/">数据挖掘 Data Mining</a> </li> <li class="cat-item cat-item-364"><a href="https://powcoder.com/category/%e7%a6%bb%e6%95%a3%e6%95%b0%e5%ad%a6/">离散数学代写代考 (Discrete mathematics)</a> </li> <li class="cat-item cat-item-384"><a href="https://powcoder.com/category/%e8%bd%af%e4%bb%b6%e5%b7%a5%e7%a8%8b/">软件工程</a> </li> <li class="cat-item cat-item-551"><a href="https://powcoder.com/category/%e7%bc%96%e7%a8%8b%e8%af%ad%e8%a8%80-programming-language/">编程语言 Programming Language</a> </li> <li class="cat-item cat-item-594"><a href="https://powcoder.com/category/%e7%bb%9f%e8%ae%a1%e4%bb%a3%e5%86%99%e4%bb%a3%e8%80%83/">统计代写代考</a> </li> <li class="cat-item cat-item-574"><a href="https://powcoder.com/category/%e8%bf%90%e7%ad%b9%e5%ad%a6-operation-research/">运筹学 Operation Research</a> </li> </ul> </nav></aside><aside id="tag_cloud-3" class="widget widget_tag_cloud"><h2 class="widget-title">Tag</h2><nav aria-label="Tag"><div class="tagcloud"><a href="https://powcoder.com/tag/algorithm/" class="tag-cloud-link tag-link-469 tag-link-position-1" style="font-size: 18px;" aria-label="Algorithm算法代写代考 (15,143 items)">Algorithm算法代写代考</a><a href="https://powcoder.com/tag/java/" class="tag-cloud-link tag-link-298 tag-link-position-2" style="font-size: 16.91156462585px;" aria-label="Java代写代考 (7,271 items)">Java代写代考</a><a href="https://powcoder.com/tag/database/" class="tag-cloud-link tag-link-414 tag-link-position-3" style="font-size: 16.503401360544px;" aria-label="database (5,442 items)">database</a><a href="https://powcoder.com/tag/data-structure/" class="tag-cloud-link tag-link-501 tag-link-position-4" style="font-size: 16.401360544218px;" aria-label="data structure (5,185 items)">data structure</a><a href="https://powcoder.com/tag/python/" class="tag-cloud-link tag-link-331 tag-link-position-5" style="font-size: 16.299319727891px;" aria-label="Python代写代考 (4,809 items)">Python代写代考</a><a href="https://powcoder.com/tag/compiler/" class="tag-cloud-link tag-link-472 tag-link-position-6" style="font-size: 16.027210884354px;" aria-label="compiler (4,000 items)">compiler</a><a href="https://powcoder.com/tag/scheme/" class="tag-cloud-link tag-link-338 tag-link-position-7" style="font-size: 15.823129251701px;" aria-label="Scheme代写代考 (3,502 items)">Scheme代写代考</a><a href="https://powcoder.com/tag/c-4/" class="tag-cloud-link tag-link-499 tag-link-position-8" style="font-size: 15.823129251701px;" aria-label="C语言代写 (3,489 items)">C语言代写</a><a href="https://powcoder.com/tag/ai/" class="tag-cloud-link tag-link-369 tag-link-position-9" style="font-size: 15.176870748299px;" aria-label="AI代写 (2,216 items)">AI代写</a><a href="https://powcoder.com/tag/c-3/" class="tag-cloud-link tag-link-491 tag-link-position-10" style="font-size: 14.700680272109px;" aria-label="c++代写 (1,633 items)">c++代写</a><a href="https://powcoder.com/tag/sql/" class="tag-cloud-link tag-link-395 tag-link-position-11" style="font-size: 14.530612244898px;" aria-label="SQL代写代考 (1,457 items)">SQL代写代考</a><a href="https://powcoder.com/tag/haskell/" class="tag-cloud-link tag-link-291 tag-link-position-12" style="font-size: 14.530612244898px;" aria-label="Haskell代写代考 (1,453 items)">Haskell代写代考</a><a href="https://powcoder.com/tag/javascript/" class="tag-cloud-link tag-link-299 tag-link-position-13" style="font-size: 14.462585034014px;" aria-label="javascript (1,395 items)">javascript</a><a href="https://powcoder.com/tag/concurrency/" class="tag-cloud-link tag-link-503 tag-link-position-14" style="font-size: 14.428571428571px;" aria-label="concurrency (1,355 items)">concurrency</a><a href="https://powcoder.com/tag/matlab/" class="tag-cloud-link tag-link-309 tag-link-position-15" style="font-size: 14.360544217687px;" aria-label="matlab代写代考 (1,281 items)">matlab代写代考</a><a href="https://powcoder.com/tag/finance/" class="tag-cloud-link tag-link-282 tag-link-position-16" style="font-size: 14.292517006803px;" aria-label="finance (1,221 items)">finance</a><a href="https://powcoder.com/tag/interpreter/" class="tag-cloud-link tag-link-297 tag-link-position-17" style="font-size: 14.190476190476px;" aria-label="interpreter (1,144 items)">interpreter</a><a href="https://powcoder.com/tag/mips/" class="tag-cloud-link tag-link-313 tag-link-position-18" style="font-size: 14.156462585034px;" aria-label="MIPS汇编代写代考 (1,134 items)">MIPS汇编代写代考</a><a href="https://powcoder.com/tag/data-mining/" class="tag-cloud-link tag-link-271 tag-link-position-19" style="font-size: 13.986394557823px;" aria-label="data mining (990 items)">data mining</a><a href="https://powcoder.com/tag/decision-tree/" class="tag-cloud-link tag-link-273 tag-link-position-20" style="font-size: 13.952380952381px;" aria-label="decision tree (982 items)">decision tree</a><a href="https://powcoder.com/tag/deep-learning/" class="tag-cloud-link tag-link-274 tag-link-position-21" style="font-size: 13.952380952381px;" aria-label="deep learning深度学习代写代考 (980 items)">deep learning深度学习代写代考</a><a href="https://powcoder.com/tag/prolog/" class="tag-cloud-link tag-link-329 tag-link-position-22" style="font-size: 13.918367346939px;" aria-label="Prolog代写代考 (957 items)">Prolog代写代考</a><a href="https://powcoder.com/tag/file-system/" class="tag-cloud-link tag-link-281 tag-link-position-23" style="font-size: 13.850340136054px;" aria-label="file system (902 items)">file system</a><a href="https://powcoder.com/tag/c/" class="tag-cloud-link tag-link-265 tag-link-position-24" style="font-size: 13.578231292517px;" aria-label="c++代做 (764 items)">c++代做</a><a href="https://powcoder.com/tag/computer-architecture/" class="tag-cloud-link tag-link-507 tag-link-position-25" style="font-size: 13.47619047619px;" aria-label="computer architecture (712 items)">computer architecture</a><a href="https://powcoder.com/tag/er/" class="tag-cloud-link tag-link-433 tag-link-position-26" style="font-size: 13.47619047619px;" aria-label="ER (711 items)">ER</a><a href="https://powcoder.com/tag/gui/" class="tag-cloud-link tag-link-290 tag-link-position-27" style="font-size: 13.47619047619px;" aria-label="gui (711 items)">gui</a><a href="https://powcoder.com/tag/gpu/" class="tag-cloud-link tag-link-396 tag-link-position-28" style="font-size: 13.272108843537px;" aria-label="GPU (620 items)">GPU</a><a href="https://powcoder.com/tag/data-science/" class="tag-cloud-link tag-link-272 tag-link-position-29" style="font-size: 13.272108843537px;" aria-label="data science (615 items)">data science</a><a href="https://powcoder.com/tag/x86%e6%b1%87%e7%bc%96/" class="tag-cloud-link tag-link-514 tag-link-position-30" style="font-size: 13.238095238095px;" aria-label="x86汇编代写代考 (606 items)">x86汇编代写代考</a><a href="https://powcoder.com/tag/case-study/" class="tag-cloud-link tag-link-468 tag-link-position-31" style="font-size: 13.204081632653px;" aria-label="case study (586 items)">case study</a><a href="https://powcoder.com/tag/distributed-system/" class="tag-cloud-link tag-link-277 tag-link-position-32" style="font-size: 13.170068027211px;" aria-label="distributed system (576 items)">distributed system</a><a href="https://powcoder.com/tag/android/" class="tag-cloud-link tag-link-256 tag-link-position-33" style="font-size: 13.034013605442px;" aria-label="android (527 items)">android</a><a href="https://powcoder.com/tag/kernel/" class="tag-cloud-link tag-link-470 tag-link-position-34" style="font-size: 13.034013605442px;" aria-label="kernel (520 items)">kernel</a><a href="https://powcoder.com/tag/arm/" class="tag-cloud-link tag-link-483 tag-link-position-35" style="font-size: 13px;" aria-label="ARM汇编代写代考 (514 items)">ARM汇编代写代考</a></div> </nav></aside><aside id="block-4" class="widget widget_block"> <div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow"><div class="wp-block-group__inner-container"><ul class="wp-block-latest-posts__list wp-block-latest-posts"><li><a class="wp-block-latest-posts__post-title" href="https://powcoder.com/2024/10/12/%e7%a8%8b%e5%ba%8f%e4%bb%a3%e5%86%99-comp2521-24t3-assignment-1-2/">程序代写 COMP2521 24T3 – Assignment 1</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://powcoder.com/2024/10/12/%e4%bb%a3%e5%86%99%e4%bb%a3%e8%80%83-compsys-705-formal-methods-for-safety-critical-software-test-17-october-20/">代写代考 COMPSYS 705 Formal Methods for Safety Critical Software Test, 17 October 20</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://powcoder.com/2024/10/07/%e7%a8%8b%e5%ba%8f%e4%bb%a3%e5%86%99-comp2521-24t3-assignment-1/">程序代写 COMP2521 24T3 – Assignment 1</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://powcoder.com/2024/09/30/%e7%a8%8b%e5%ba%8f%e4%bb%a3%e5%86%99-comp4500-7500-2/">程序代写 COMP4500/7500</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://powcoder.com/2024/09/30/%e4%bb%a3%e5%86%99%e4%bb%a3%e8%80%83-comp4161-t3-2024-advanced-topics-in-software-verification/">代写代考 COMP4161 T3/2024 Advanced Topics in Software Verification</a></li> </ul></div></div> </aside> </div><!-- .sidebar-main --> </div><!-- #secondary --> </div> <!-- ast-container --> </div><!-- #content --> <footer class="site-footer" id="colophon" itemtype="https://schema.org/WPFooter" itemscope="itemscope" itemid="#colophon"> <div class="site-below-footer-wrap ast-builder-grid-row-container site-footer-focus-item ast-builder-grid-row-full ast-builder-grid-row-tablet-full ast-builder-grid-row-mobile-full ast-footer-row-stack ast-footer-row-tablet-stack ast-footer-row-mobile-stack" data-section="section-below-footer-builder"> <div class="ast-builder-grid-row-container-inner"> <div class="ast-builder-footer-grid-columns site-below-footer-inner-wrap ast-builder-grid-row"> <div class="site-footer-below-section-1 site-footer-section site-footer-section-1"> <div class="ast-builder-layout-element ast-flex site-footer-focus-item ast-footer-copyright" data-section="section-footer-builder"> <div class="ast-footer-copyright"><p>Copyright © 2024 PowCoder代写 | Powered by <a href="https://wpastra.com/" rel="nofollow noopener" target="_blank">Astra WordPress Theme</a></p> </div> </div> </div> </div> </div> </div> </footer><!-- #colophon --> </div><!-- #page --> <link rel="stylesheet" href="https://powcoder.com/wp-content/cache/minify/12163.css" media="all" /> <script id="astra-theme-js-js-extra"> var astra = {"break_point":"921","isRtl":"","is_scroll_to_id":"","is_scroll_to_top":"","is_header_footer_builder_active":"1","responsive_cart_click":"flyout"}; </script> <script src="https://powcoder.com/wp-content/cache/minify/75800.js"></script> <script src="https://stats.wp.com/e-202445.js" id="jetpack-stats-js" data-wp-strategy="defer"></script> <script id="jetpack-stats-js-after"> _stq = window._stq || []; _stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"132118579\",\"post\":\"12318\",\"tz\":\"8\",\"srv\":\"powcoder.com\",\"j\":\"1:13.9.1\"}") ]); _stq.push([ "clickTrackerInit", "132118579", "12318" ]); </script> <script> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1); </script> </body> </html> <!-- Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/ Object Caching 275/338 objects using Disk Page Caching using Disk: Enhanced Content Delivery Network via N/A Minified using Disk Served from: powcoder.com @ 2024-11-05 19:04:26 by W3 Total Cache -->