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/mkt-nssn/">Mkt</a> - <a class="link" href="/questions/where-did-martha-stewart-work-before-entrepreneur-c2zb/">Where did martha stewart work before entrepreneur</a> - <a class="link" href="/questions/police-code-59-gun-5upl/">Police code 59 gun</a> - <a class="link" href="/questions/what-was-howard-schultzs-original-strategic-vision-for-starbucks-afnp/">What was howard schultz's original strategic vision for starbucks</a> - <a class="link" href="/questions/how-many-protons-are-in-krypton-b4kb/">How many protons are in krypton</a> - <a class="link" href="/questions/bus-107-route-map-1fwp/">Bus 107 route map</a> - <a class="link" href="/questions/give-the-iupac-name-for-the-following-structure-2hds/">Give the iupac name for the following structure</a> - <a class="link" href="/questions/how-to-draw-the-hunger-games-symbol-v9xt/">How to draw the hunger games symbol</a> - <a class="link" href="/questions/discussions-7-j6duoy/">Discussions 7</a> - <a class="link" href="/questions/ben-and-jerrys-business-model-jlhd/">Ben and jerry's business model</a> - <a class="link" href="/questions/workplace-transport-safety-checklist-te8q/">Workplace transport safety checklist</a> - <a class="link" href="/questions/nutrition-assignment-cbaa/">Nutrition assignment</a> - <a class="link" href="/questions/katherine-knight-crime-scene-kbwj/">Katherine knight crime scene</a> - <a class="link" href="/questions/which-factor-affects-the-escape-speed-mass-and-or-radius-tsjh/">Which factor affects the escape speed mass and or radius</a> - <a class="link" href="/questions/755-bus-timetable-mount-druitt-uiyw/">755 bus timetable mount druitt</a> - <a class="link" href="/questions/discussion-q-bcxp/">Discussion Q</a> - <a class="link" href="/questions/5-5-with-dimples-potential-wife-credentials-lyrics-izwn/">5 5 with dimples potential wife credentials lyrics</a> - <a class="link" href="/questions/nike-commodity-chain-a4qd/">Nike commodity chain</a> - <a class="link" href="/questions/module-06-final-exam-requires-respondus-lockdown-browser-lgeh/">Module 06 Final Exam- Requires Respondus LockDown Browser</a> - <a class="link" href="/questions/nexus-9000-aci-mode-fmjj/">Nexus 9000 aci mode</a> - <a class="link" href="/questions/lma-manager-2004-no-more-money-worries-vktd/">Lma manager 2004 no more money worries</a> - <a class="link" href="/questions/jenkins-v-eckerd-corporation-case-brief-hh9h/">Jenkins v eckerd corporation case brief</a> - <a class="link" href="/questions/chemical-kinetics-of-the-iodine-clock-reaction-lab-report-f6rt/">Chemical kinetics of the iodine clock reaction lab report</a> - <a class="link" href="/questions/statistics-help-cxlu/">Statistics Help</a> - <a class="link" href="/questions/character-description-examples-ks2-qr43/">Character description examples ks2</a> - <a class="link" href="/questions/priory-high-school-penwortham-8ib9/">Priory high school penwortham</a> - <a class="link" href="/questions/pyramid-federal-credit-union-p7xa/">Pyramid federal credit union</a> - <a class="link" href="/questions/drops-in-the-bucket-homework-cdpk/">Drops in the bucket homework</a> - <a class="link" href="/questions/costco-wholesale-corporation-mission-business-model-and-strategy-3ksh/">Costco wholesale corporation mission business model and strategy</a> - <a class="link" href="/questions/psychology-uoa-degree-planner-vczr/">Psychology uoa degree planner</a> - <a class="link" href="/questions/thermal-analysis-of-disc-brake-ppt-pjur/">Thermal analysis of disc brake ppt</a> - <a class="link" href="/questions/sex-linked-traits-virtual-lab-answers-zqid/">Sex linked traits virtual lab answers</a> - <a class="link" href="/questions/a-gay-mans-case-against-gay-marriage-1ebu/">A gay man's case against gay marriage</a> - <a class="link" href="/questions/clark-rubber-clear-plastic-hh0j/">Clark rubber clear plastic</a> - <a class="link" href="/questions/english-xpjf/">English</a> - <a class="link" href="/questions/readiness-for-enhanced-breastfeeding-nursing-care-plan-4uym/">Readiness for enhanced breastfeeding nursing care plan</a> - <a class="link" href="/questions/entr150-55678-this-assignment-will-be-submitted-to-turnitin-jyungk/">ENTR150-55678 This assignment will be submitted to Turnitin®</a> - <a class="link" href="/questions/for-anyone-hnqe/">For anyone</a> - <a class="link" href="/questions/law-conversion-course-ucl-5dhg/">Law conversion course ucl</a> - <a class="link" href="/questions/hands-on-networking-fundamentals-2nd-edition-answers-lhwv/">Hands on networking fundamentals 2nd edition answers</a> - <a class="link" href="/questions/discussion-udcs/">Discussion</a> - <a class="link" href="/questions/essay-gktk/">Essay</a> - <a class="link" href="/questions/strategic-marketing-4-pyvi/">Strategic Marketing 4</a> - <a class="link" href="/questions/hang-the-dj-iqz0/">"Hang the DJ”</a> - <a class="link" href="/questions/excel-finite-element-analysis-2nzo/">Excel finite element analysis</a> - <a class="link" href="/questions/s-ut-1-2at-2-solve-for-u-9gzm/">S ut 1 2at 2 solve for u</a> - <a class="link" href="/questions/the-child-who-was-shot-dead-at-nyanga-analysis-vntd/">The child who was shot dead at nyanga analysis</a> - <a class="link" href="/questions/what-does-the-triangle-mean-in-naplan-x42m/">What does the triangle mean in naplan</a> - <a class="link" href="/questions/discussion-u3yr/">Discussion</a> - <a class="link" href="/questions/foundations-of-structural-kinesiology-anu9/">Foundations of structural kinesiology</a> - <a class="link" href="/questions/pink-ribbon-morning-tea-afon/">Pink ribbon morning tea</a> - <a class="link" href="/questions/hump-de-dump-song-qtrw/">Hump de dump song</a> - <a class="link" href="/questions/principles-of-macroeconomics-9xam/">Principles of Macroeconomics</a> - <a class="link" href="/questions/dexter-yager-net-worth-forbes-ea6h/">Dexter yager net worth forbes</a> - <a class="link" href="/questions/pet-speaking-part-4-guwy/">Pet speaking part 4</a> - <a class="link" href="/questions/concept-synthesis-paper-1k8p/">Concept synthesis paper</a> - <a class="link" href="/questions/name-three-of-cobits-six-control-objectives-argg/">Name three of cobit's six control objectives</a> - <a class="link" href="/questions/ot-journal-analysis-5-xhfi/">OT- Journal Analysis 5</a> - <a class="link" href="/questions/which-of-the-following-statements-is-true-of-process-costing-zuxz/">Which of the following statements is true of process costing?</a> - <a class="link" href="/questions/nhs-scotland-bank-staff-ae7o/">Nhs scotland bank staff</a> - <a class="link" href="/questions/how-to-create-an-analysis-plan-vmh3/">How to create an analysis plan</a> - <a class="link" href="/questions/doing-media-research-an-introduction-1eqv/">Doing media research an introduction</a> - <a class="link" href="/questions/2515-boundary-road-mosman-park-qifk/">25/15 boundary road mosman park</a> - <a class="link" href="/questions/acc-202-milestone-1-workbook-ogd5/">Acc 202 milestone 1 workbook</a> - <a class="link" href="/questions/can-you-please-solve-this-gjqx/">Can You Please Solve this </a> - <a class="link" href="/questions/lil-wayne-quote-mirror-tk7b/">Lil wayne quote mirror</a> - <a class="link" href="/questions/advocacy-and-opposition-rybacki-rybacki-7th-edition-free-pdf-c7wp/">Advocacy and opposition rybacki & rybacki 7th edition free pdf</a> - <a class="link" href="/questions/data-analytics-and-datamining-4ky6/">Data analytics and datamining</a> - <a class="link" href="/questions/comprehensive-problem-1-2jta/">Comprehensive problem 1</a> - <a class="link" href="/questions/military-problem-ybmt/">Military problem </a> - <a class="link" href="/questions/chebyshevs-theorem-excel-4sgc/">Chebyshev's theorem excel</a> - <a class="link" href="/questions/advanced-level-accounting-syllabus-veok/">Advanced level accounting syllabus</a> - <a class="link" href="/questions/99-georgiana-terrace-gosford-a5qc/">99 georgiana terrace gosford</a> - <a class="link" href="/questions/the-self-and-perception-discussion-l5up/">The Self and Perception Discussion</a> - <a class="link" href="/questions/metal-recycling-sunshine-coast-mlwn/">Metal recycling sunshine coast</a> - <a class="link" href="/questions/hr_str-u2-z12y/">HR_STR (U2)</a> - <a class="link" href="/questions/nmc-controlled-drugs-guidelines-8kkd/">Nmc controlled drugs guidelines</a> - <a class="link" href="/questions/michael-blackson-1st-amendment-full-video-d2iv/">Michael blackson 1st amendment full video</a> - <a class="link" href="/questions/important-lab-safety-rules-zfxx/">Important lab safety rules</a> - <a class="link" href="/questions/check-for-understanding-teach-like-a-champion-piob/">Check for understanding teach like a champion</a> - <a class="link" href="/questions/ben-stacy-blue-man-2aw7/">Ben stacy blue man</a> - <a class="link" href="/questions/autonomous-collective-monty-python-1ic4/">Autonomous collective monty python</a> - <a class="link" href="/questions/cost-quality-access-healthcare-triangle-sp63/">Cost quality access healthcare triangle</a> - <a class="link" href="/questions/managerial-ksa-a7ap/">Managerial KSA</a> - <a class="link" href="/questions/sales-policies-and-procedures-manual-pdf-cvk6/">Sales policies and procedures manual pdf</a> - <a class="link" href="/questions/cask-of-amontillado-project-ideas-pzae/">Cask of amontillado project ideas</a> - <a class="link" href="/questions/dennis-gioia-ford-pinto-ue2j/">Dennis gioia ford pinto</a> - <a class="link" href="/questions/business-law-and-environment-important-questions-jkms/">Business law and environment important questions</a> - <a class="link" href="/questions/miniature-pony-for-sale-nsw-qrwi/">Miniature pony for sale nsw</a> - <a class="link" href="/questions/how-technology-based-leadership-has-driven-the-digital-age-also-that-the-role-of-technology-leadership-incorporates-with-the-technology-acceptance-model-tam-ltw4/">How technology-based leadership has driven the digital age. Also, that the role of technology leadership incorporates with the Technology Acceptance Model (TAM).</a> - <a class="link" href="/questions/use-the-zoom-dialog-box-to-create-a-calculated-field-z6vw/">Use the zoom dialog box to create a calculated field</a> - <a class="link" href="/questions/causes-of-perceptual-distortion-lkqp/">Causes of perceptual distortion</a> - <a class="link" href="/questions/behavior-modification-project-research-paper-vzig/">Behavior modification project research paper</a> - <a class="link" href="/questions/cherie-lunghi-nescafe-jnxq/">Cherie lunghi nescafe</a> - <a class="link" href="/questions/community-and-nursing-due-24-hours-cf0e/">Community And Nursing (Due 24 Hours)</a> - <a class="link" href="/questions/america-as-superpower-confrontation-in-a-nuclear-age-1947-present-choose-one-qlq6/">America as Superpower--Confrontation in a Nuclear Age (1947-Present) CHOOSE ONE </a> - <a class="link" href="/questions/g1-giqy/">G1</a> - <a class="link" href="/questions/matt-teachout-coud/">Matt teachout</a> - <a class="link" href="/questions/tomas-se-________-todas-las-mananas-j765/">Tomás se ________ todas las mañanas</a> - <a class="link" href="/questions/lm-powder-coatings-ltd-9bd7/">Lm powder coatings ltd</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>