Loading...

Messages

Proposals

Stuck in your homework and missing deadline? Get urgent help in $10/Page with 24 hours deadline

Get Urgent Writing Help In Your Essays, Assignments, Homeworks, Dissertation, Thesis Or Coursework & Achieve A+ Grades.

Privacy Guaranteed - 100% Plagiarism Free Writing - Free Turnitin Report - Professional And Experienced Writers - 24/7 Online Support

Is collateral beauty on redbox

22/11/2021 Client: muhammad11 Deadline: 2 Day

Red Box Inventory

KEY ITEMS: Key items are marked in red. Failure to include or complete key items will incur additional deductions

as noted beside the item.

Submission:

• The file containing main must be named Main.java. (-5 points)

• The project files must be in packages that start with RedBox.* (-5 points)

• All project deliverables are to be submitted in eLearning

o Add your project’s presentation link in the comments section in eLearning

• Zip the contents of the src directory into a single zipped file

o Make sure the zipped file has a .zip extension (not .tar, .rar, .7z, etc.) (-5 points)

• Programs must compile and run with Java SE 13.

• Each student is responsible for developing unit test cases to ensure the program works as expected.

• Type your name and netID in the comments at the top of all files submitted. (-5 points)

Objectives:

• Implement a binary search tree class in Java

• Utilize a binary search tree

• Create a modular code solution with multi-packages

• Use the Singleton pattern to create and manage the Scanner object

• Use Java Generics to create generic classes and methods

Problem: Redbox needs a program to track inventory and to generate a report for their DVD rental kiosks. Given

a log of transactions including renting and returning DVDs as well as adding and removing DVD titles, the program

will need to process each transaction and create a report after all transactions have been processed. The

generated report will list all DVD titles stored in the kiosk as well as how many of each disc are in the kiosk.

Details:

• The inventory will be held in a binary search tree that you will create (-15 points if not)

• Use the DVD title to determine node placement in the tree

• The binary tree will be seeded with an inventory file

• Once seeded, the program will parse a transaction log to update the inventory

• There are five possible transactions:

o Add

▪ Add a new title

• Create a new node and insert it into the tree

▪ Add copies to an existing title

• Find the title in the tree and increase the number of available copies by the

amount listed

o Remove copies of an existing title

▪ Find the title in the tree and reduce the number of available copies by the amount listed

▪ If number available is zero and no copies are rented out, delete the node from the tree

▪ There will not be more copies removed than available.

o Rent a DVD

▪ Reduce available amount of an existing title by one and increase rented amount by one

o Return a DVD

▪ Increase available amount of an existing title by one and reduce rented amount by one

Classes:

• Node

o Members

▪ Title (string – case insensitive)

▪ Available (integer)

▪ Rented (integer)

▪ Left (node pointer)

▪ Right (node pointer)

o Methods

▪ Overloaded constructor

▪ Mutators

▪ Accessors

• Binary Search Tree

o Binary Search Tree class must use generics (-5 points if not)

o Members

▪ Root (node pointer)

o Methods

▪ Mutator

▪ Accessor

▪ Insert (recursive) (-5 points if not)

▪ Search (recursive) (-5 points if not)

▪ Delete

▪ Other methods that are necessary to interact with a binary search tree

• Remember that methods should be generic to be used on a binary tree regardless

of the problem and data type.

User Interface and Input: There is no user interface for this program. Input will be loaded from two files,

inventory.dat and transaction.log. The inventory.dat is assumed to be error free and it will be

read first by your program and loaded into a binary search tree. Each line (except the last line which may not have

a newline character) in inventory.dat will be formatted as follows (NOTE: represents a variable value):

”,<quantity available>, <quantity rented> //May contain space(s) around commas</p> <p>After processing the inventory file, begin processing transaction.log. Each line of the file should follow one</p> <p>of the following formats (Note: Command is case insensitive):</p> <p>• aDd “<title>”, <number to add> //Command lines may contain space(s) around commas</p> <p>• ReMove “<title>”,<number to remove></p> <p>• rent “<title>”</p> <p>• retUrn “<title>”</p> <p>The transaction file may contain errors due to network disruptions from the main server. For each line in the</p> <p>transaction log, validate that it follows one of the formats listed above. If it is the correct format, process the</p> <p>transaction. If the <number to add>, <number to remove>, or the line format is invalid write the line to an error</p> <p>file (as described below). All numbers are expected to be integers. To be valid, the line must follow the format</p> <p>exactly. Also, do not assume that a title in the transaction log will be in the tree.</p> <p>Output: A file named error.log will be created only if any lines of transaction.log are invalid.</p> <p>Error.log will contain all invalid entries of the transaction file.</p> <p>At the end of the program, create a formatted report file that contains each title, the number of copies available</p> <p>to rent for that title as well as the number of copies that are currently rented. The titles should be listed in</p> <p>alphabetical order (without the double quotes). The report should be arranged in three formatted columns that</p> <p>line up the data nicely:</p> <p>• Title</p> <p>• Copies available</p> <p>• Copies rented</p> <p>Title Available Rented ----------------------------------------------------------- Collateral Beauty 2 2 Doctor Strange 1 2 Hacksaw Ridge 0 1</p> <p>Write the report to a file named redbox_kiosk.txt</p> <p>Program Flow:</p> <p>• Program starts in main() method</p> <p>• Load inventory.dat</p> <p>• Create and populate the Binary Search Tree</p> <p>• Load transaction.log</p> <p>• Process all transactions</p> <p>• Output final inventory to file Unit Testing: A unit test method is required to test each of the commands listed in the write-up above. These methods will be used by the unit testing framework to test the accuracy of your code.</p> <p>• AddTitle(...)</p> <p>• RemoveTitle(...)</p> <p>• RentTitle(...)</p> <p>• ReturnTitle(...)</p> <p>Grading:</p> <p>• Coding standards, style and comments (20 Points) o Create a multi-package code solution (8 Points) o Use Singleton pattern for scanner instance (2 Points) o Coding standards and comments (10 Points)</p> <p>• Unit testing methods x 4, one for each of the methods mentioned above (12 Points)</p> <p>• The rest of the grade will be broken down as follows: • AddTitle(...) (12 Points)</p> <p>• RemoveTitle(...) (12 Points)</p> <p>• RentTitle(...) (12 Points)</p> <p>• ReturnTitle(...) (12 Points)</p> <p>• Generic Binary Search Tree (20 Points)</p> <p>Notes:</p> <p>• No startup code solution will be provided. You are expected to start a new solution from scratch and layer</p> <p>your solution in a way similar to project #3.</p> <p>• All *.dat files are assumed to be local to the current executable.</p> <p>• Your program is expected to have basic file validation.</p> <p>• Your program must use a Singleton pattern for Scanner instance. This ensures that only one instance of</p> <p>the Scanner object is created throughout your program.</p> <p>• You must implement and utilize a generic binary search tree class. Your class should not inherit any</p> <p>existing Java binary tree class.</p> <p>• Deliverables: Up to 10 minutes project video presentation (MS Teams) with a functioning program</p> <p>including Unit Testing methods.</p></div> <!--a class="button is-medium is-primary viewfullcontent">View Full Details</a--> </div> <div class="box has-background-light"> <h3 class="title is-size-4 is-size-5-mobile">Homework is Completed By:</h3> <div class="table-container"> <table class="table is-bordered is-fullwidth is-striped"> <thead> <tr class="has-background-primary"> <th class="has-text-white">Writer</th> <th class="has-text-white">Writer Name</th> <th class="has-text-white">Amount</th> <th class="has-text-white">Client Comments & Rating</th> </tr> </thead> <tbody> <tr> <td class="has-text-centered is-narrow"> <figure class="image is-96x96 is-inline-block tutor-card-figure"> <img src="/media/cache/b1/72/b172ece98cd21b83285d8cf33f5b685a.jpg" alt="Instant Homework Helper"> <p class="has-background-secondary has-text-white py-1 is-size-7">ONLINE</p> </figure> </td> <td class="content is-narrow"> <h3 class="is-size-4 is-marginless"> <a href="/tutor/helpingdoor/">Instant Homework Helper</a> <span><i class="flag2x flag-sprite flag-p flag-_k"></i></span> </h3> <nav class="level is-mobile"> <div class="level-left"> <div class="level-item"> <p class="tag is-secondary is-medium">4.8</p> </div> <div class="level-item" style="flex-direction:column;align-items:self-start;"> <p class="has-text-weight-semibold is-marginless">4305 Orders Completed</p> <div class="my-rating" data-rating="4.845268292682927"></div> </div> </div> </nav> </td> <td class="is-narrow"> <a class="button is-medium is-warning heading has-text-weight-bold">$36</a> </td> <td> <div class="content"> <p>She helped me in last minute in a very reasonable price. She is a lifesaver, I got A+ grade in my homework, I will surely hire her again for my next assignments, Thumbs Up!</p> </div> <nav class="level is-mobile"> <div class="level-left"> <div class="level-item"> <p class="tag is-secondary is-medium">5.00</p> </div> <div class="level-item"> <div class="my-rating" data-rating="5"></div> </div> </div> </nav> </td> </tr> <tr> <td colspan="4"> <div class="buttons"> <a class="button is-static has-text-weight-bold"> <span class="icon"><i class="fas fa-file-alt"></i></span> <span>Answer.docx</span> </a> <a class="button is-static has-text-weight-bold"> <span class="icon"><i class="fas fa-file-alt"></i></span> <span>Turnitin Report.pdf</span> </a> <a class="button is-secondary has-text-weight-bold" href="/questions/chat-with-tutor/8/"><span class="icon"><i class="far fa-comments"></i></span> <span>Contact Writer For Solution</span> </a> <a class="button is-large is-warning is-rounded is-uppercase has-text-weight-bold is-size-7-mobile" href="/questions/chat-with-tutor/8/" style="position:fixed;left:20px;bottom:20px;z-index:30;box-shadow:3px 3px 10px;"> <span>Contact Writer For Solution</span> </a> </div> </td> </tr> </tbody> </table> </div> </div> <div class="box py-0 px-0"><div class="boxx"> <div class="columns is-desktop"> <div class="column is-4-desktop"> <div class="notification is-primary"> <div class="content"> <h3 class="is-size-2">Order & Get This Solution Within 3 Hours in $25/Page</h3> <p>Custom Original Solution And Get A+ Grades</p> <ul> <li>100% Plagiarism Free</li> <li>Proper APA/MLA/Harvard Referencing</li> <li>Delivery in 3 Hours After Placing Order</li> <li>Free Turnitin Report</li> <li>Unlimited Revisions</li> <li>Privacy Guaranteed</li> </ul> </div> <div class="buttons"> <a class="button is-medium is-fullwidth" href="/questions/chat-with-tutor/13/?url=https://tutorsonspot.com/questions/is-collateral-beauty-on-redbox-kwrh/&deadline=3h">Order Now</a> </div> </div> </div> <div class="column is-4-desktop"> <div class="notification is-secondary"> <div class="content"> <h3 class="is-size-2">Order & Get This Solution Within 6 Hours in $20/Page</h3> <p>Custom Original Solution And Get A+ Grades</p> <ul> <li>100% Plagiarism Free</li> <li>Proper APA/MLA/Harvard Referencing</li> <li>Delivery in 6 Hours After Placing Order</li> <li>Free Turnitin Report</li> <li>Unlimited Revisions</li> <li>Privacy Guaranteed</li> </ul> </div> <div class="buttons"> <a class="button is-medium is-fullwidth" href="/questions/chat-with-tutor/13/?url=https://tutorsonspot.com/questions/is-collateral-beauty-on-redbox-kwrh/&deadline=6h">Order Now</a> </div> </div> </div> <div class="column is-4-desktop"> <div class="notification is-info"> <div class="content"> <h3 class="is-size-2">Order & Get This Solution Within 12 Hours in $15/Page</h3> <p>Custom Original Solution And Get A+ Grades</p> <ul> <li>100% Plagiarism Free</li> <li>Proper APA/MLA/Harvard Referencing</li> <li>Delivery in 12 Hours After Placing Order</li> <li>Free Turnitin Report</li> <li>Unlimited Revisions</li> <li>Privacy Guaranteed</li> </ul> </div> <div class="buttons"> <a class="button is-medium is-fullwidth" href="/questions/chat-with-tutor/13/?url=https://tutorsonspot.com/questions/is-collateral-beauty-on-redbox-kwrh/&deadline=12h">Order Now</a> </div> </div> </div> </div> </div></div> <div id="proposals-avatars" class="box"> <h4 class="title is-4">6 writers have sent their proposals to do this homework:</h4> <figure class="image is-32x32 is-inline-block"> <a href="#essaynassignmenthelp01" title="View Proposal of Essay & Assignment Help"><img src="/media/cache/43/ec/43ec87683e428d8e5705c7df832bc915.jpg" alt="Essay & Assignment Help"></a> </figure> <figure class="image is-32x32 is-inline-block"> <a href="#helpingdoor" title="View Proposal of Instant Homework Helper"><img src="/media/cache/30/66/306625bdd2a54a14dfc9e2a9a1552bc3.jpg" alt="Instant Homework Helper"></a> </figure> <figure class="image is-32x32 is-inline-block"> <a href="#aleenah38" title="View Proposal of Professional Coursework Help"><img src="/media/cache/2d/f7/2df719d2dcacd1061480c3b8609529cf.jpg" alt="Professional Coursework Help"></a> </figure> <figure class="image is-32x32 is-inline-block"> <a href="#cvmaster90" title="View Proposal of Academic Master"><img src="/media/cache/3f/7a/3f7ac6ffa5ce88e9141d0a21c18ece1b.jpg" alt="Academic Master"></a> </figure> <figure class="image is-32x32 is-inline-block"> <a href="#premiumsolutions544" title="View Proposal of Premium Solutions"><img src="/media/cache/dc/b0/dcb090355898e5b4dadcfd88ab5b5647.jpg" alt="Premium Solutions"></a> </figure> <figure class="image is-32x32 is-inline-block"> <a href="#isabellakaif01" title="View Proposal of Isabella K."><img src="/media/cache/aa/b1/aab1efd7b91c8387c09465bf421cdcbe.jpg" alt="Isabella K."></a> </figure> </div> <div id="proposals-list"> <div class="table-container"> <table class="table is-bordered is-fullwidth is-striped"> <thead> <tr class="has-background-light"> <th>Writer</th> <th>Writer Name</th> <th>Offer</th> <th>Chat</th> </tr> </thead> <tbody> <tr id="essaynassignmenthelp01"> <td class="has-text-centered is-narrow"> <figure class="image is-64x64 is-inline-block tutor-card-figure"> <img src="/media/cache/4a/ef/4aef5cb915499e5f8cc5287b63567008.jpg" alt="Essay & Assignment Help"> <p class="has-background-secondary has-text-white py-1 is-size-7">ONLINE</p> </figure> </td> <td class="content"> <h3 class="is-size-5 is-marginless"> <a href="/tutor/essaynassignmenthelp01/">Essay & Assignment Help</a> <span><i class="flag2x flag-sprite flag-i flag-_n"></i></span> </h3> <p class="is-marginless">I have worked on wide variety of research papers including; Analytical research paper, Argumentative research paper, Interpretative research, experimental research etc.</p> <nav class="level is-mobile"> <div class="level-left"> <div class="level-item"> <p class="tag is-secondary is-medium">4.8</p> </div> <div class="level-item" style="flex-direction:column;align-items:self-start;"> <p class="has-text-weight-semibold is-marginless">1071 Orders Completed</p> <div class="my-rating" data-rating="4.754901960784314"></div> </div> </div> </nav> </td> <td> <a class="button is-medium is-warning heading has-text-weight-bold">$25</a> </td> <td> <a class="button is-medium is-secondary heading has-text-weight-bold" href="/questions/chat-with-tutor/23/">Chat With Writer</a> </td> </tr> <tr id="helpingdoor"> <td class="has-text-centered is-narrow"> <figure class="image is-64x64 is-inline-block tutor-card-figure"> <img src="/media/cache/b1/72/b172ece98cd21b83285d8cf33f5b685a.jpg" alt="Instant Homework Helper"> <p class="has-background-secondary has-text-white py-1 is-size-7">ONLINE</p> </figure> </td> <td class="content"> <h3 class="is-size-5 is-marginless"> <a href="/tutor/helpingdoor/">Instant Homework Helper</a> <span><i class="flag2x flag-sprite flag-p flag-_k"></i></span> </h3> <p class="is-marginless">I am an elite class writer with more than 6 years of experience as an academic writer. I will provide you the 100 percent original and plagiarism-free content.</p> <nav class="level is-mobile"> <div class="level-left"> <div class="level-item"> <p class="tag is-secondary is-medium">4.7</p> </div> <div class="level-item" style="flex-direction:column;align-items:self-start;"> <p class="has-text-weight-semibold is-marginless">6006 Orders Completed</p> <div class="my-rating" data-rating="4.700769230769231"></div> </div> </div> </nav> </td> <td> <a class="button is-medium is-warning heading has-text-weight-bold">$38</a> </td> <td> <a class="button is-medium is-secondary heading has-text-weight-bold" href="/questions/chat-with-tutor/8/">Chat With Writer</a> </td> </tr> <tr id="aleenah38"> <td class="has-text-centered is-narrow"> <figure class="image is-64x64 is-inline-block tutor-card-figure"> <img src="/media/cache/44/0f/440f11b99f30419458fd29de20e2ca83.jpg" alt="Professional Coursework Help"> <p class="has-background-secondary has-text-white py-1 is-size-7">ONLINE</p> </figure> </td> <td class="content"> <h3 class="is-size-5 is-marginless"> <a href="/tutor/aleenah38/">Professional Coursework Help</a> <span><i class="flag2x flag-sprite flag-i flag-_n"></i></span> </h3> <p class="is-marginless">I reckon that I can perfectly carry this project for you! I am a research writer and have been writing academic papers, business reports, plans, literature review, reports and others for the past 1 decade.</p> <nav class="level is-mobile"> <div class="level-left"> <div class="level-item"> <p class="tag is-secondary is-medium">4.8</p> </div> <div class="level-item" style="flex-direction:column;align-items:self-start;"> <p class="has-text-weight-semibold is-marginless">1470 Orders Completed</p> <div class="my-rating" data-rating="4.780714285714286"></div> </div> </div> </nav> </td> <td> <a class="button is-medium is-warning heading has-text-weight-bold">$37</a> </td> <td> <a class="button is-medium is-secondary heading has-text-weight-bold" href="/questions/chat-with-tutor/26/">Chat With Writer</a> </td> </tr> <tr id="cvmaster90"> <td class="has-text-centered is-narrow"> <figure class="image is-64x64 is-inline-block tutor-card-figure"> <img src="/media/cache/40/61/4061c6b496469607305ed9173dbb31ef.jpg" alt="Academic Master"> <p class="has-background-secondary has-text-white py-1 is-size-7">ONLINE</p> </figure> </td> <td class="content"> <h3 class="is-size-5 is-marginless"> <a href="/tutor/cvmaster90/">Academic Master</a> <span><i class="flag2x flag-sprite flag-p flag-_k"></i></span> </h3> <p class="is-marginless">I am an experienced researcher here with master education. After reading your posting, I feel, you need an expert research writer to complete your project.Thank You</p> <nav class="level is-mobile"> <div class="level-left"> <div class="level-item"> <p class="tag is-secondary is-medium">4.8</p> </div> <div class="level-item" style="flex-direction:column;align-items:self-start;"> <p class="has-text-weight-semibold is-marginless">2877 Orders Completed</p> <div class="my-rating" data-rating="4.835839416058394"></div> </div> </div> </nav> </td> <td> <a class="button is-medium is-warning heading has-text-weight-bold">$36</a> </td> <td> <a class="button is-medium is-secondary heading has-text-weight-bold" href="/questions/chat-with-tutor/17/">Chat With Writer</a> </td> </tr> <tr id="premiumsolutions544"> <td class="has-text-centered is-narrow"> <figure class="image is-64x64 is-inline-block tutor-card-figure"> <img src="/media/cache/08/5c/085cdb89ff965dcfb916d4c9d0c681f9.jpg" alt="Premium Solutions"> <p class="has-background-secondary has-text-white py-1 is-size-7">ONLINE</p> </figure> </td> <td class="content"> <h3 class="is-size-5 is-marginless"> <a href="/tutor/premiumsolutions544/">Premium Solutions</a> <span><i class="flag2x flag-sprite flag-i flag-_n"></i></span> </h3> <p class="is-marginless">I will provide you with the well organized and well research papers from different primary and secondary sources will write the content that will support your points.</p> <nav class="level is-mobile"> <div class="level-left"> <div class="level-item"> <p class="tag is-secondary is-medium">4.9</p> </div> <div class="level-item" style="flex-direction:column;align-items:self-start;"> <p class="has-text-weight-semibold is-marginless">840 Orders Completed</p> <div class="my-rating" data-rating="4.85"></div> </div> </div> </nav> </td> <td> <a class="button is-medium is-warning heading has-text-weight-bold">$39</a> </td> <td> <a class="button is-medium is-secondary heading has-text-weight-bold" href="/questions/chat-with-tutor/34/">Chat With Writer</a> </td> </tr> <tr id="isabellakaif01"> <td class="has-text-centered is-narrow"> <figure class="image is-64x64 is-inline-block tutor-card-figure"> <img src="/media/cache/56/be/56be35dbec9a3f392b0564d47ebead8d.jpg" alt="Isabella K."> <p class="has-background-secondary has-text-white py-1 is-size-7">ONLINE</p> </figure> </td> <td class="content"> <h3 class="is-size-5 is-marginless"> <a href="/tutor/isabellakaif01/">Isabella K.</a> </h3> <p class="is-marginless">I have read your project description carefully and you will get plagiarism free writing according to your requirements. Thank You</p> <nav class="level is-mobile"> <div class="level-left"> <div class="level-item"> <p class="tag is-secondary is-medium">4.9</p> </div> <div class="level-item" style="flex-direction:column;align-items:self-start;"> <p class="has-text-weight-semibold is-marginless">21 Orders Completed</p> <div class="my-rating" data-rating="4.85"></div> </div> </div> </nav> </td> <td> <a class="button is-medium is-warning heading has-text-weight-bold">$40</a> </td> <td> <a class="button is-medium is-secondary heading has-text-weight-bold" href="/questions/chat-with-tutor/5/">Chat With Writer</a> </td> </tr> </tbody> </table> </div> <div class="hero is-secondary"> <div class="hero-body"> <div class="columns is-desktop has-text-centered-mobile is-vcentered"> <div class="column"> <p class="heading is-size-4 is-size-5-mobile">Let our expert academic writers to help you in achieving a+ grades in your homework, assignment, quiz or exam.</p> </div> <div class="column is-narrow"> <a class="button is-warning is-uppercase is-medium is-size-6-mobile" href="/questions/post-homework-step-1/">Post your homework</a> </div> </div> </div> </div> </div> <div class="box content mt-5"> <h2 class="title is-3">Similar Homework Questions</h2> <a class="link" href="/questions/chaparral-rainfall-graph-pwlw/">Chaparral rainfall graph</a> - <a class="link" href="/questions/lab-2-preparing-a-research-report-with-a-footnote-jjzo/">Lab 2 preparing a research report with a footnote</a> - <a class="link" href="/questions/sensonics-smell-test-answer-key-acgn/">Sensonics smell test answer key</a> - <a class="link" href="/questions/going-home-painting-by-jacob-lawrence-3dxl/">Going home painting by jacob lawrence</a> - <a class="link" href="/questions/sylvia-plath-nick-and-the-candlestick-ohed/">Sylvia plath nick and the candlestick</a> - <a class="link" href="/questions/business-law-2-final-exam-8s7e/">Business law 2 final exam</a> - <a class="link" href="/questions/the-application-of-data-to-problem-solving-3jyl/">The Application of Data to Problem-Solving</a> - <a class="link" href="/questions/a-shaman-in-indigenous-religions-is-taij/">A shaman in indigenous religions is</a> - <a class="link" href="/questions/what-best-describes-the-rightness-or-wrongness-of-plagiarism-qyh3/">What best describes the rightness or wrongness of plagiarism</a> - <a class="link" href="/questions/how-does-an-ea-repository-support-the-implementation-methodology-zqk3/">How does an ea repository support the implementation methodology</a> - <a class="link" href="/questions/psychology-essay-vbdm/">PSYCHOLOGY ESSAY</a> - <a class="link" href="/questions/costas-social-strategy-3-aprs/">Costas Social Strategy 3</a> - <a class="link" href="/questions/www-truity-com-test-big-five-personality-test-vhoj/">Www truity com test big five personality test</a> - <a class="link" href="/questions/fraser-island-great-walk-map-jkm9/">Fraser island great walk map</a> - <a class="link" href="/questions/diet-and-wellness-plus-diet-analysis-program-mqw9/">Diet and wellness plus diet analysis program</a> - <a class="link" href="/questions/aztec-science-achievements-6sd5/">Aztec science achievements</a> - <a class="link" href="/questions/rossendale-pet-crematorium-and-memorial-gardens-nebc/">Rossendale pet crematorium and memorial gardens</a> - <a class="link" href="/questions/a-therapist-at-a-free-university-clinic-treats-elementary-school-5kca/">A therapist at a free university clinic treats elementary school</a> - <a class="link" href="/questions/christmas-tree-symbolism-a-dolls-house-pzhh/">Christmas tree symbolism a doll's house</a> - <a class="link" href="/questions/esol-progress-assessment-guidelines-oh5h/">Esol progress assessment guidelines</a> - <a class="link" href="/questions/bpp-lifetime-pass-assurance-acca-qcx5/">Bpp lifetime pass assurance acca</a> - <a class="link" href="/questions/george-mason-mis-d3m3/">George mason mis</a> - <a class="link" href="/questions/5-phases-of-aggression-cycle-htdx/">5 phases of aggression cycle</a> - <a class="link" href="/questions/simpsons-lord-of-the-flies-z4kn/">Simpsons lord of the flies</a> - <a class="link" href="/questions/business-law-ethics-and-social-responsibility-ytuy/">BUSINESS LAW, ETHICS AND SOCIAL RESPONSIBILITY</a> - <a class="link" href="/questions/coca-cola-segmentation-hv5u/">Coca cola segmentation</a> - <a class="link" href="/questions/energy-systems-response-to-acute-exercise-xv5c/">Energy systems response to acute exercise</a> - <a class="link" href="/questions/money-and-the-prices-in-the-long-run-and-open-economies-qc6d/">Money and the prices in the long run and open economies</a> - <a class="link" href="/questions/what-are-the-capacity-implications-of-the-marketing-campaign-y92i/">What are the capacity implications of the marketing campaign</a> - <a class="link" href="/questions/discussion-responses-tsv2/">Discussion responses </a> - <a class="link" href="/questions/case-studies-of-organelle-diseases-answers-rplj/">Case studies of organelle diseases answers</a> - <a class="link" href="/questions/how-cost-accounting-distorts-product-costs-c1qv/">How cost accounting distorts product costs</a> - <a class="link" href="/questions/what-is-the-value-of-creative-arts-in-primary-education-zfvi/">What is the value of creative arts in primary education</a> - <a class="link" href="/questions/soap-note-for-nausea-and-vomiting-dbjb/">Soap note for nausea and vomiting</a> - <a class="link" href="/questions/irish-daily-star-contact-l74o/">Irish daily star contact</a> - <a class="link" href="/questions/decimal-to-binary-java-code-edrm/">Decimal to binary java code</a> - <a class="link" href="/questions/gabbedy-milson-lee-canberra-nqzf/">Gabbedy milson lee canberra</a> - <a class="link" href="/questions/extravagant-hypothesis-fallacy-definition-and-examples-5rsf/">Extravagant hypothesis fallacy definition and examples</a> - <a class="link" href="/questions/how-to-find-drop-factor-3dqo/">How to find drop factor</a> - <a class="link" href="/questions/factor-tree-of-108-ymm0/">Factor tree of 108</a> - <a class="link" href="/questions/contemporary-issues-teenagers-face-today-gnrw/">Contemporary issues teenagers face today</a> - <a class="link" href="/questions/nursing-j5bs/">Nursing </a> - <a class="link" href="/questions/particle-count-test-for-hepa-filter-h4yt/">Particle count test for hepa filter</a> - <a class="link" href="/questions/letter-to-the-reader-in-portfolio-j0l7/">Letter to the reader in portfolio</a> - <a class="link" href="/questions/level-3-principles-of-ict-systems-and-data-security-answers-xxaf/">Level 3 principles of ict systems and data security answers</a> - <a class="link" href="/questions/how-to-find-radius-of-capillary-tube-snxc/">How to find radius of capillary tube</a> - <a class="link" href="/questions/ethical-issues-with-questionnaires-0rg0/">Ethical issues with questionnaires</a> - <a class="link" href="/questions/5-cs-of-business-uif3/">5 c's of business</a> - <a class="link" href="/questions/synchronous-motor-circuit-diagram-rjk2/">Synchronous motor circuit diagram</a> - <a class="link" href="/questions/organisational-behaviour-individuals-groups-and-organisation-4th-edition-pdf-j7pz/">Organisational behaviour individuals groups and organisation 4th edition pdf</a> - <a class="link" href="/questions/discussion-question-qbmg/">Discussion question</a> - <a class="link" href="/questions/what-is-an-agile-mis-infrastructure-vraf/">What is an agile mis infrastructure</a> - <a class="link" href="/questions/distribution-of-sample-variance-31sz/">Distribution of sample variance</a> - <a class="link" href="/questions/in-the-____-type-of-grapevine-communication-network-yccj/">In the ____ type of grapevine communication network</a> - <a class="link" href="/questions/how-to-do-hesss-law-calculations-tgfm/">How to do hess's law calculations</a> - <a class="link" href="/questions/history-and-government-lxm9/">History and government </a> - <a class="link" href="/questions/why-accounting-information-system-is-important-oxtz/">Why accounting information system is important</a> - <a class="link" href="/questions/to-improve-the-performance-of-underutilizers-managers-should-exfl/">To improve the performance of underutilizers managers should</a> - <a class="link" href="/questions/how-to-make-portfolio-for-internship-5wai/">How to make portfolio for internship</a> - <a class="link" href="/questions/microsoft-office-leeds-university-zrjk/">Microsoft office leeds university</a> - <a class="link" href="/questions/alpha-cell-deep-cycle-battery-xzav/">Alpha cell deep cycle battery</a> - <a class="link" href="/questions/mba-599-discussion-7-jpom/">MBA 599 DISCUSSION #7</a> - <a class="link" href="/questions/compare-and-contrast-autocratic-and-democratic-leadership-styles-tguu/">Compare and contrast autocratic and democratic leadership styles</a> - <a class="link" href="/questions/distinctive-competencies-of-under-armour-nssd/">Distinctive competencies of under armour</a> - <a class="link" href="/questions/cie-chemistry-data-booklet-2mjd/">Cie chemistry data booklet</a> - <a class="link" href="/questions/plc-stl-programming-examples-ty2s/">Plc stl programming examples</a> - <a class="link" href="/questions/world-civilization-before-1650-6qjw/">World Civilization before 1650.</a> - <a class="link" href="/questions/datasplice-mobile-for-maximo-19ti/">Datasplice mobile for maximo</a> - <a class="link" href="/questions/al-pacino-looking-for-richard-quotes-k1ug/">Al pacino looking for richard quotes</a> - <a class="link" href="/questions/chemist-bohemia-road-hastings-gocx/">Chemist bohemia road hastings</a> - <a class="link" href="/questions/david-and-goliath-powerpoint-xelg/">David and goliath powerpoint</a> - <a class="link" href="/questions/selection-criteria-statement-examples-eclu/">Selection criteria statement examples</a> - <a class="link" href="/questions/australian-steel-section-properties-69sz/">Australian steel section properties</a> - <a class="link" href="/questions/advantages-of-one-dimensional-array-rkgu/">Advantages of one dimensional array</a> - <a class="link" href="/questions/social-work-blog-week-7-rpkk/">SOCIAL WORK Blog Week 7</a> - <a class="link" href="/questions/9781337614436-0nha/">9781337614436</a> - <a class="link" href="/questions/games-strategies-and-decision-making-pdf-akgq/">Games strategies and decision making pdf</a> - <a class="link" href="/questions/multicultural-counseling-competencies-and-standards-a-call-to-the-profession-ga0f/">Multicultural counseling competencies and standards a call to the profession</a> - <a class="link" href="/questions/margaret-atwood-scarlet-ibis-vqc9/">Margaret atwood scarlet ibis</a> - <a class="link" href="/questions/public-health-szl5/">Public Health </a> - <a class="link" href="/questions/temperate-forest-animals-facts-kqje/">Temperate forest animals facts</a> - <a class="link" href="/questions/remote-vocational-training-scheme-qgg9/">Remote vocational training scheme</a> - <a class="link" href="/questions/does-contact-with-the-justice-system-deter-or-promote-future-delinquency-results-from-a-longitudinal-study-of-british-adolescent-twins-by-ryan-t-motzet-als-in-criminology-may-2020-volume-58-iss-e7uy/">DOES CONTACT WITH THE JUSTICE SYSTEM DETER OR PROMOTE FUTURE DELINQUENCY? RESULTS FROM A LONGITUDINAL STUDY OF BRITISH ADOLESCENT TWINS” by Ryan T. Motz,et als. in Criminology, May 2020; volume 58 issue 2(pp. 280-306)</a> - <a class="link" href="/questions/an-ideal-otto-cycle-has-a-compression-knh6/">An ideal otto cycle has a compression</a> - <a class="link" href="/questions/nike-associating-athletes-performance-and-the-brand-tpd1/">Nike associating athletes performance and the brand</a> - <a class="link" href="/questions/sooner-okie-irrigation-and-drainage-nxo3/">Sooner okie irrigation and drainage</a> - <a class="link" href="/questions/difference-between-prose-and-drama-7vsx/">Difference between prose and drama</a> - <a class="link" href="/questions/module-2-slp-saht/">Module 2 SLP-</a> - <a class="link" href="/questions/pulse-candy-turnover-2019-igj4/">Pulse candy turnover 2019</a> - <a class="link" href="/questions/thors-walden-statue-of-jesus-aol2/">Thors walden statue of jesus</a> - <a class="link" href="/questions/denominational-switching-in-australia-post-1945-88t7/">Denominational switching in australia post 1945</a> - <a class="link" href="/questions/case-studies-in-abnormal-psychology-gorenstein-and-comer-pdf-uh7y/">Case studies in abnormal psychology gorenstein and comer pdf</a> - <a class="link" href="/questions/father-of-medical-technology-8rhv/">Father of medical technology</a> - <a class="link" href="/questions/danny-and-sue-puberty-blues-oetq/">Danny and sue puberty blues</a> - <a class="link" href="/questions/one-good-turn-deserves-another-meaning-scai/">One good turn deserves another meaning</a> - <a class="link" href="/questions/apple-supply-chain-management-case-study-nozj/">Apple supply chain management case study</a> - <a class="link" href="/questions/advanced-innovative-business-practice-zelp/">Advanced innovative business practice</a> - <a class="link" href="/questions/morgan-molten-metal-systems-jepk/">Morgan molten metal systems</a> - <a class="link" href="/questions/celf-5-average-range-whtk/">Celf 5 average range</a> - <a class="link" href="/questions/according-to-sternbergs-triangular-theory-of-love-the-most-complete-ideal-type-of-love-is-5kjs/">According to sternberg's triangular theory of love, the most complete, ideal type of love is</a> </div> </div> </div> </div> <footer> <hr class="is-marginless"> <section class="section has-background-white"> <div class="container"> <div class="columns is-desktop is-vcentered"> <div class="column"> <div class="content"> <h3 class="is-size-3">100% Secure Payment!</h3> <p class="is-size-5">With secure payments and hundereds of professional tutors to choose from, TutorsOnSpot.Com is the simplest and safest way to get help from verified tutors.</p> </div> </div> <div class="column is-narrow"> <figure class="image is-64x64"> <img src="/static/img/paypal.png"> </figure> </div> <div class="column is-narrow"> <figure class="image is-64x64"> <img src="/static/img/visa.png"> </figure> </div> <div class="column is-narrow"> <figure class="image is-64x64"> <img src="/static/img/mastercard.png"> </figure> </div> </div> </div> </section> <section class="section is-small has-background-grey-lighter py-3"> <div class="container"> <div class="content"> <p class="is-size-4">Disclaimer: Tutors are not employees or representatives of TutorsOnSpot.Com</p> </div> </div> </section> <div class="section has-background-dark"> <div class="container"> <div class="columns is-desktop"> <div class="column"> <a class="is-block" href="/"> <p class="is-marginless is-size-3 has-text-weight-bold is-capitalized has-text-secondary"><span>TutorsOnSpot</span><span class="is-size-6">.com</span></p> <p class="is-size-6 has-text-grey-light has-text-weight-light is-capitalized">Online Tutoring Since 2013</p> </a> </div> <div class="column is-narrow"> <div class="content"> <h3 class="title is-3 has-text-grey-lighter">Worlds No. 1 Online Tutoring Platform</h3> <p class="subtitle has-text-grey-lighter">Join The Community Already Trusted By Thousands Of Students Like You</p> </div> </div> </div> <hr class="has-background-grey-light"> <div class="columns is-desktop"> <div class="column is-6-desktop"> <div class="content"> <h4 class="has-text-grey-lighter">ABOUT:</h4> <p><a class="is-block has-text-grey is-uppercase has-text-weight-semibold aboutus">About TutorsOnSpot</a></p> <p><a class="is-block has-text-grey is-uppercase has-text-weight-semibold" href="/support-form/">Help & Support</a></p> </div> </div> <div class="column is-6-desktop"> <div class="content"> <h4 class="has-text-grey-lighter">ABOUT TUTORS:</h4> <p><a class="is-block has-text-grey is-uppercase has-text-weight-semibold" href="/accounts/signup/writer/">Become A Tutor</a></p> </div> </div> </div> </div> </div> </footer> </main> <a href="#" class="scrollToTop"> <span class="icon is-large has-text-secondary"> <i class="far fa-3x fa-arrow-alt-circle-up"></i> </span> </a> <audio id="notify"> <source src="/static/sounds/definite.mp3" type="audio/mpeg"> </audio> <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script> <script type="text/javascript" src="/static/js/quickview.min.js"></script> <script type="text/javascript" src="/static/notify/noty.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.3.2/jquery-confirm.min.js"></script> <script src="/static/js/jqconfirmdefault.js" type="text/javascript"></script> <script src="/static/rating/rating.js" type="text/javascript"></script> <script> $(document).ready(function(){ var quickviews = bulmaQuickview.attach(); $('.pageloader').removeClass('is-active') $('#burger-main').click(function(){ $(this).toggleClass('is-active') $('#navbar-main').toggleClass('is-active') }) $(".my-rating").starRating({ starShape: 'rounded', starSize: 18, emptyColor: 'lightgray', activeColor: '#FFC107', useGradient: false, readOnly: true }); $(".my-rating-big").starRating({ starShape: 'rounded', starSize: 30, emptyColor: 'lightgray', activeColor: '#FFC107', useGradient: false, readOnly: true }); $('.quickview-block').on('click', '.noticebutton', function(e) { e.preventDefault() var action_object = $(this).data('action-object') var actor = $(this).data('actor') var desc = $(this).data('desc') var location = $(this).attr('href') var url = '/core/inbox/notifications/delete/' $.get({ url: url, data: {'action_object':action_object, 'actor':actor, 'desc':desc}, success: function(context){ window.location = location } }) return false }) $('.quickviewChat').click(function(){ $('#quickviewBids').removeClass('is-active') $('#quickviewChat').toggleClass('is-active') }) $('.quickviewBids').click(function(){ $('#quickviewChat').removeClass('is-active') $('#quickviewBids').toggleClass('is-active') }) $('span.delete').click(function(){ $(this).closest('.quickview').removeClass('is-active') }) //Check to see if the window is top if not then display button // $(window).scroll(function(){ // if ($(this).scrollTop() > 150) { // $('.scrollToTop').fadeIn(); // } else { // $('.scrollToTop').fadeOut(); // } // }); //Click event to scroll to top $('.scrollToTop').click(function(){ $('html, body').animate({scrollTop : 0},800); return false; }); $('.prices').click(function(){ $.confirm({ title:'Prices at TutorsOnSpot.Com', content: function(){ var self = this; return $.ajax({ url: '/ajax/prices/', method: 'get' }).done(function (response) { self.setContentAppend(response); }); }, buttons: { close: function(helloButton){ }, } }); }) $('.faqs').click(function(){ $.confirm({ title:'FREQUENTLY ASKED QUESTIONS', content: function(){ var self = this; return $.ajax({ url: '/ajax/faqs/', method: 'get' }).done(function (response) { self.setContentAppend(response); }); }, buttons: { close: function(helloButton){ }, } }); }) $('.aboutus').click(function(){ $.confirm({ title:'About Us', content: function(){ var self = this; return $.ajax({ url: '/ajax/about-us/', method: 'get' }).done(function (response) { self.setContentAppend(response); }); }, buttons: { close: function(helloButton){ }, } }); }) }); </script> <!--Start of Tawk.to Script--> <script type="text/javascript"> var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date(); (function(){ var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0]; s1.async=true; s1.src='https://embed.tawk.to/60a69632b1d5182476bae5fb/1f65bledb'; s1.charset='UTF-8'; s1.setAttribute('crossorigin','*'); s0.parentNode.insertBefore(s1,s0); })(); </script> <!--End of Tawk.to Script--> <!--script type="text/javascript"> $(document).ready(function(){ $('.viewfullcontent').click(function(){ $('.shortcontent').addClass('is-hidden') $('.fullcontent').removeClass('is-hidden') $(this).addClass('is-hidden') }) }); </script--> </body> </html>