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/union-corrugating-metal-roofing-dnvv/">Union corrugating metal roofing</a> - <a class="link" href="/questions/case-of-controversy-requirement-please-respond-to-the-following-ufaj/">"Case of Controversy Requirement" Please respond to the following:</a> - <a class="link" href="/questions/the-case-for-short-words-summary-peu2/">The case for short words summary</a> - <a class="link" href="/questions/houghton-v-trafalgar-insurance-m2o0/">Houghton v trafalgar insurance</a> - <a class="link" href="/questions/essay-paper-doctoral-level-lana/">ESSAY PAPER (Doctoral Level)</a> - <a class="link" href="/questions/managing-director-theatre-job-description-wjns/">Managing director theatre job description</a> - <a class="link" href="/questions/sexual-health-clinic-falkirk-ohei/">Sexual health clinic falkirk</a> - <a class="link" href="/questions/american-red-cross-consent-decree-1993-bnfc/">American red cross consent decree 1993</a> - <a class="link" href="/questions/consent-to-act-as-director-jyds/">Consent to act as director</a> - <a class="link" href="/questions/donabedian-theory-of-quality-health-care-4z4p/">Donabedian theory of quality health care</a> - <a class="link" href="/questions/snhu-ms-operations-and-project-management-z4z4/">Snhu ms operations and project management</a> - <a class="link" href="/questions/data-ur8m/">Data</a> - <a class="link" href="/questions/help-rysn/">Help</a> - <a class="link" href="/questions/global-knowledge-management-at-danone-a-mt3a/">Global knowledge management at danone a</a> - <a class="link" href="/questions/fundamental-principles-of-servant-leadership-in-nursing-hmjg/">Fundamental principles of servant leadership in nursing</a> - <a class="link" href="/questions/540-dis-xqa1/">540 dis</a> - <a class="link" href="/questions/walden-university-fnp-preceptor-commitment-form-nbto/">Walden university fnp preceptor commitment form</a> - <a class="link" href="/questions/humbuggery-and-manipulation-the-art-of-leadership-xn96/">Humbuggery and manipulation the art of leadership</a> - <a class="link" href="/questions/discussion-lyxh/">Discussion</a> - <a class="link" href="/questions/accounting-simple-task-fcxg/">Accounting - simple task</a> - <a class="link" href="/questions/patrick-inc-makes-industrial-solvents-5zia/">Patrick inc makes industrial solvents</a> - <a class="link" href="/questions/this-is-a-partial-adjusted-trial-balance-of-ramon-company-ltco/">This is a partial adjusted trial balance of ramon company</a> - <a class="link" href="/questions/case-study-on-total-quality-management-with-solution-hc8f/">Case study on total quality management with solution</a> - <a class="link" href="/questions/critical-thinking-virtual-organization-management-dgny/">Critical thinking- virtual organization management </a> - <a class="link" href="/questions/swinburne-online-teaching-periods-2021-w3b9/">Swinburne online teaching periods 2021</a> - <a class="link" href="/questions/data-mining-ox8v/">Data Mining</a> - <a class="link" href="/questions/462-km-in-miles-3vug/">4.62 km in miles</a> - <a class="link" href="/questions/inert-gas-system-failure-calh/">Inert gas system failure</a> - <a class="link" href="/questions/ambulatory-care-yxrz/">Ambulatory Care</a> - <a class="link" href="/questions/uc-berkeley-aquatic-center-kyxe/">Uc berkeley aquatic center</a> - <a class="link" href="/questions/human-trafficking-h8ub/">HUMAN TRAFFICKING</a> - <a class="link" href="/questions/gower-building-southampton-university-kint/">Gower building southampton university</a> - <a class="link" href="/questions/preschool-prep-series-dvds-ywtx/">Preschool prep series dvds</a> - <a class="link" href="/questions/superposition-theorem-experiment-pdf-2itj/">Superposition theorem experiment pdf</a> - <a class="link" href="/questions/feeling-thermometer-scale-vtkn/">Feeling thermometer scale</a> - <a class="link" href="/questions/systematic-and-random-error-examples-roqv/">Systematic and random error examples</a> - <a class="link" href="/questions/example-of-a-thesis-statement-of-a-short-story-azuv/">Example of a thesis statement of a short story</a> - <a class="link" href="/questions/nursing-diagnosis-for-pancreatitis-q3vd/">Nursing diagnosis for pancreatitis</a> - <a class="link" href="/questions/the-underground-railroad-colson-whitehead-pdf-ziek/">The underground railroad colson whitehead pdf</a> - <a class="link" href="/questions/fact-finding-techniques-pdf-whv3/">Fact finding techniques pdf</a> - <a class="link" href="/questions/dodge-bearing-lubrication-guide-vq87/">Dodge bearing lubrication guide</a> - <a class="link" href="/questions/factor-tree-of-40-mm6f/">Factor tree of 40</a> - <a class="link" href="/questions/musculoskeletal-shadow-health-answers-yyi2/">Musculoskeletal shadow health answers</a> - <a class="link" href="/questions/copper-chloride-dihydrate-and-aluminum-aj9m/">Copper chloride dihydrate and aluminum</a> - <a class="link" href="/questions/isha-yoga-teacher-salary-tasf/">Isha yoga teacher salary</a> - <a class="link" href="/questions/gillette-fusion-proglide-travel-case-fh3h/">Gillette fusion proglide travel case</a> - <a class="link" href="/questions/what-is-the-heaviest-boneless-animal-7thl/">What is the heaviest boneless animal</a> - <a class="link" href="/questions/reading-assignment-and-case-write-up-dqqr/">Reading Assignment and Case Write-up </a> - <a class="link" href="/questions/r-v-moloney-1985-7vvx/">R v moloney 1985</a> - <a class="link" href="/questions/cujo-dog-minding-darwin-7spz/">Cujo dog minding darwin</a> - <a class="link" href="/questions/ira-home-furniture-enterprises-festival-mall-tzjj/">Ira home furniture enterprises festival mall</a> - <a class="link" href="/questions/case-studies-qjad/">Case Studies</a> - <a class="link" href="/questions/3262-wellington-street-st-kilda-0qzg/">32/62 wellington street st kilda</a> - <a class="link" href="/questions/decd-learnlink-staff-portal-hakq/">Decd learnlink staff portal</a> - <a class="link" href="/questions/bsbinm601-assessment-3-ckt9/">Bsbinm601 assessment 3</a> - <a class="link" href="/questions/kaufman-test-of-educational-achievement-second-edition-e7im/">Kaufman test of educational achievement second edition</a> - <a class="link" href="/questions/are-goblin-sharks-aggressive-vtc2/">Are goblin sharks aggressive</a> - <a class="link" href="/questions/client-consultation-card-for-spa-nrzt/">Client consultation card for spa</a> - <a class="link" href="/questions/research-paper-chemistry-6zff/">Research paper (Chemistry</a> - <a class="link" href="/questions/7-8-unc-tap-drill-size-pyqm/">7 8 unc tap drill size</a> - <a class="link" href="/questions/how-does-food-become-compromised-by-microbes-pugp/">How does food become compromised by microbes</a> - <a class="link" href="/questions/medisys-corp-case-study-ppt-qe6t/">Medisys corp case study ppt</a> - <a class="link" href="/questions/fire-alarm-acceptance-test-checklist-n15g/">Fire alarm acceptance test checklist</a> - <a class="link" href="/questions/stranger-child-abduction-cases-2ssk/">Stranger child abduction cases</a> - <a class="link" href="/questions/testout-switching-pro-certification-exam-answers-814w/">Testout switching pro certification exam answers</a> - <a class="link" href="/questions/shadow-health-history-answers-x5tt/">Shadow health history answers</a> - <a class="link" href="/questions/balance-sheet-lesson-qwf5/">Balance sheet lesson</a> - <a class="link" href="/questions/happy-fishing-win-money-mjoh/">Happy fishing win money</a> - <a class="link" href="/questions/multiple-exemplars-aba-7vif/">Multiple exemplars aba</a> - <a class="link" href="/questions/color-music-childrens-choir-wikipedia-n9x1/">Color music children's choir wikipedia</a> - <a class="link" href="/questions/sacm-student-portal-sign-in-xep7/">Sacm student portal sign in</a> - <a class="link" href="/questions/information-technology-importance-in-strategic-planning-nznz/">Information Technology Importance in Strategic Planning </a> - <a class="link" href="/questions/descriptive-writing-using-senses-d1fg/">Descriptive writing using senses</a> - <a class="link" href="/questions/gcu-database-j1kj/">Gcu database</a> - <a class="link" href="/questions/project-thi2/">Project</a> - <a class="link" href="/questions/the-good-morrow-translation-dyn5/">The good morrow translation</a> - <a class="link" href="/questions/aib-business-banking-helpline-5b9l/">Aib business banking helpline</a> - <a class="link" href="/questions/the-periodicity-assumption-states-that-eswy/">The periodicity assumption states that</a> - <a class="link" href="/questions/business-management-study-design-3dqj/">Business management study design</a> - <a class="link" href="/questions/loadtech-on-board-weighing-h5im/">Loadtech on board weighing</a> - <a class="link" href="/questions/discussion-responses-8brh/">Discussion Responses</a> - <a class="link" href="/questions/slick-stick-hair-wand-priceline-m4f7/">Slick stick hair wand priceline</a> - <a class="link" href="/questions/4-examples-of-first-class-levers-bix4/">4 examples of first class levers</a> - <a class="link" href="/questions/pin-oak-soil-ph-yg3o/">Pin oak soil ph</a> - <a class="link" href="/questions/average-dividend-payout-ratio-by-industry-m4yn/">Average dividend payout ratio by industry</a> - <a class="link" href="/questions/hrm_discussion1-sbsf/">HRM_Discussion1</a> - <a class="link" href="/questions/whose-interests-should-be-the-paramount-concern-dvt5/">Whose interests should be the paramount concern</a> - <a class="link" href="/questions/maxi-maxi-mini-mini-mnj4/">Maxi maxi mini mini</a> - <a class="link" href="/questions/microsoft-excel-assignment-4-a4o0/">Microsoft Excel Assignment 4</a> - <a class="link" href="/questions/theories-lmsg/">Theories</a> - <a class="link" href="/questions/week-8-1bm2/">Week 8</a> - <a class="link" href="/questions/sociology-qazx/">Sociology </a> - <a class="link" href="/questions/brain-tumors-with-restricted-diffusion-uucd/">Brain tumors with restricted diffusion</a> - <a class="link" href="/questions/6-steps-of-root-cause-analysis-ihi-umap/">6 steps of root cause analysis ihi</a> - <a class="link" href="/questions/eec-iv-stand-alone-3yof/">Eec iv stand alone</a> - <a class="link" href="/questions/module-1-cells-as-the-basis-of-life-answers-lbp9/">Module 1 cells as the basis of life answers</a> - <a class="link" href="/questions/ethical-principles-in-business-velasquez-bhse/">Ethical principles in business velasquez</a> - <a class="link" href="/questions/bluebeam-stamp-with-editable-text-ar4z/">Bluebeam stamp with editable text</a> - <a class="link" href="/questions/12-awg-wire-jaycar-lyfi/">12 awg wire jaycar</a> - <a class="link" href="/questions/functional-behavioral-assessment-diagnosis-and-treatment-2nd-edition-pdf-x5mt/">Functional behavioral assessment diagnosis and treatment 2nd edition pdf</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>