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/policy-and-politics-in-nursing-and-healthcare-pdf-3di5/">Policy and politics in nursing and healthcare pdf</a> - <a class="link" href="/questions/general-power-of-attorney-philippines-4593/">General power of attorney philippines</a> - <a class="link" href="/questions/mariano-vallejo-and-the-absorption-of-california-iu78/">Mariano vallejo and the absorption of california</a> - <a class="link" href="/questions/writing-help-ndlj/">Writing help</a> - <a class="link" href="/questions/organizational-culture-and-values-powerpoint-presentation-nexk/">Organizational culture and values powerpoint presentation</a> - <a class="link" href="/questions/record-sliding-door-manual-nv66/">Record sliding door manual</a> - <a class="link" href="/questions/research-paper-8zor/">Research Paper</a> - <a class="link" href="/questions/immigrants-at-central-station-poem-analysis-idrd/">Immigrants at central station poem analysis</a> - <a class="link" href="/questions/bus5112-marketing-management-xy87/">BUS5112 - Marketing Management</a> - <a class="link" href="/questions/oedipus-rex-hubris-quotes-gmnn/">Oedipus rex hubris quotes</a> - <a class="link" href="/questions/bradfords-mini-digger-hire-gobw/">Bradfords mini digger hire</a> - <a class="link" href="/questions/netmba-value-chain-1yp8/">Netmba value chain</a> - <a class="link" href="/questions/api-20e-biochemical-test-strip-slqy/">Api 20e biochemical test strip</a> - <a class="link" href="/questions/symbolism-in-the-wizard-of-oz-qhul/">Symbolism in "the wizard of OZ"</a> - <a class="link" href="/questions/what-is-a-bobcat-machine-called-k96c/">What is a bobcat machine called</a> - <a class="link" href="/questions/case-study-on-innovation-and-marketing-of-new-products-wework-or-gopro-7ziu/">Case Study on Innovation and marketing of new products: Wework or Gopro</a> - <a class="link" href="/questions/health-care-career-essay-oqj1/">Health Care Career Essay </a> - <a class="link" href="/questions/polkdhsd7-sharpschool-com-drq9/">Polkdhsd7 sharpschool com</a> - <a class="link" href="/questions/authentication-do6o/">Authentication</a> - <a class="link" href="/questions/week2-oyok/">Week2</a> - <a class="link" href="/questions/types-of-informative-texts-zbrv/">Types of informative texts</a> - <a class="link" href="/questions/best-buy-wall-street-journal-article-eurj/">Best buy wall street journal article</a> - <a class="link" href="/questions/intermediate-value-theorem-worksheet-answers-eidl/">Intermediate value theorem worksheet answers</a> - <a class="link" href="/questions/psyc-351-journal-article-critique-0rny/">Psyc 351 journal article critique</a> - <a class="link" href="/questions/constant-speed-propeller-run-up-check-ie9a/">Constant speed propeller run up check</a> - <a class="link" href="/questions/essay-yoyu/">Essay</a> - <a class="link" href="/questions/i-scaled-the-mountain-for-jerry-boots-v34n/">I scaled the mountain for jerry boots</a> - <a class="link" href="/questions/what-is-a-non-binding-price-floor-brxg/">What is a non binding price floor</a> - <a class="link" href="/questions/deep-well-injection-pros-and-cons-1ml5/">Deep well injection pros and cons</a> - <a class="link" href="/questions/shadow-health-chest-pain-documentation-62tq/">Shadow health chest pain documentation</a> - <a class="link" href="/questions/branches-of-physical-science-ppt-jfhq/">Branches of physical science ppt</a> - <a class="link" href="/questions/hair-2eb0/">Hair</a> - <a class="link" href="/questions/jackson-automotive-case-study-solution-7jp5/">Jackson automotive case study solution</a> - <a class="link" href="/questions/practical-connections-paper-ofhc/">Practical Connections Paper</a> - <a class="link" href="/questions/me-online-dis-8-9mvd/">ME - Online - Dis 8</a> - <a class="link" href="/questions/language-of-representation-examples-rlvi/">Language of representation examples</a> - <a class="link" href="/questions/cold-heat-cordless-soldering-pen-enbj/">Cold heat cordless soldering pen</a> - <a class="link" href="/questions/bsbcmm401a-make-a-presentation-assessment-answers-ppzc/">Bsbcmm401a make a presentation assessment answers</a> - <a class="link" href="/questions/information-systems-k6d8/">Information Systems</a> - <a class="link" href="/questions/discussion-question-enyu/">Discussion Question</a> - <a class="link" href="/questions/iris-module-classroom-management-jsf9/">Iris module classroom management</a> - <a class="link" href="/questions/fake-facebook-powerpoint-template-sl7x/">Fake facebook powerpoint template</a> - <a class="link" href="/questions/grand-valley-state-university-pa-program-6olj/">Grand valley state university pa program</a> - <a class="link" href="/questions/famous-astrologer-in-bangalore-tlmq/">Famous astrologer in bangalore</a> - <a class="link" href="/questions/chap-2-and-3-gwup/">Chap 2 and 3</a> - <a class="link" href="/questions/david-neale-uc-davis-z56b/">David neale uc davis</a> - <a class="link" href="/questions/training-seeing-eye-dog-puppies-e3nc/">Training seeing eye dog puppies</a> - <a class="link" href="/questions/cover-letter-for-vacation-work-nz5y/">Cover letter for vacation work</a> - <a class="link" href="/questions/identifying-cations-in-solution-lab-answers-9gg6/">Identifying cations in solution lab answers</a> - <a class="link" href="/questions/shapes-in-a-tangram-zt5b/">Shapes in a tangram</a> - <a class="link" href="/questions/below-are-incomplete-financial-statements-for-bulldog-inc-yvn0/">Below are incomplete financial statements for bulldog inc</a> - <a class="link" href="/questions/des-star-ratings-2021-dccf/">Des star ratings 2021</a> - <a class="link" href="/questions/five-step-marketing-research-approach-uq6w/">Five-step marketing research approach</a> - <a class="link" href="/questions/45a-whyte-street-somerton-park-qqua/">45a whyte street somerton park</a> - <a class="link" href="/questions/effects-of-alcohol-worksheet-v7gz/">Effects of alcohol worksheet</a> - <a class="link" href="/questions/finding-the-nth-root-of-a-complex-number-y04n/">Finding the nth root of a complex number</a> - <a class="link" href="/questions/the-plea-frontline-video-m1lt/">The plea frontline video</a> - <a class="link" href="/questions/bode-plot-of-integrator-guyj/">Bode plot of integrator</a> - <a class="link" href="/questions/amanda-todd-death-pictures-ouea/">Amanda todd death pictures</a> - <a class="link" href="/questions/human-centered-design-certificate-berkeley-gm7b/">Human-centered design certificate berkeley</a> - <a class="link" href="/questions/will-barry-go-septic-despite-listening-to-classical-music-gi7j/">Will barry go septic despite listening to classical music</a> - <a class="link" href="/questions/assignment-088-7zxu/">Assignment #088</a> - <a class="link" href="/questions/future-of-the-juvenile-justice-system-proposal-presentation-je3o/">Future of the juvenile justice system proposal presentation</a> - <a class="link" href="/questions/complex-report-part-of-it-is-in-excel-happxw/">Complex report (part of it is in excel)</a> - <a class="link" href="/questions/harwood-11-objections-to-utilitarianism-j9bf/">Harwood 11 objections to utilitarianism</a> - <a class="link" href="/questions/4th-grade-mission-project-q6at/">4th grade mission project</a> - <a class="link" href="/questions/how-to-write-a-workshop-proposal-oqti/">How to write a workshop proposal</a> - <a class="link" href="/questions/scholastic-book-review-template-cudr/">Scholastic book review template</a> - <a class="link" href="/questions/compensable-factors-and-defined-degrees-mvsw/">Compensable factors and defined degrees</a> - <a class="link" href="/questions/the-problem-of-deforestation-essay-rgwi/">The problem of deforestation essay</a> - <a class="link" href="/questions/how-to-maintain-workplace-records-ldw6/">How to maintain workplace records</a> - <a class="link" href="/questions/patterns-of-expository-writing-g50l/">Patterns of expository writing</a> - <a class="link" href="/questions/the-lovely-bones-buckley-0uia/">The lovely bones buckley</a> - <a class="link" href="/questions/network-infrastructure-design-example-boc6/">Network infrastructure design example</a> - <a class="link" href="/questions/the-talos-principle-wiki-dx7v/">The talos principle wiki</a> - <a class="link" href="/questions/the-essentials-of-baccalaureate-education-for-professional-nursing-practice-1itt/">The essentials of baccalaureate education for professional nursing practice</a> - <a class="link" href="/questions/mba515-week-6-discussion-6-73ua/">MBA515 Week 6 Discussion 6</a> - <a class="link" href="/questions/macbeth-witches-rhyming-couplets-cfet/">Macbeth witches rhyming couplets</a> - <a class="link" href="/questions/how-to-succeed-in-spanish-class-wuil/">How to succeed in spanish class</a> - <a class="link" href="/questions/mt-baw-baw-apartments-5w4e/">Mt baw baw apartments</a> - <a class="link" href="/questions/the-dove-counterbalance-intelligence-test-zuw6/">The dove counterbalance intelligence test</a> - <a class="link" href="/questions/community-nurse-dq-6-skhc/">Community Nurse DQ # 6</a> - <a class="link" href="/questions/computer-networking-from-lans-to-wans-pdf-5qci/">Computer networking from lans to wans pdf</a> - <a class="link" href="/questions/the-casino-industry-case-analysis-auxa/">The casino industry case analysis</a> - <a class="link" href="/questions/rkfree-setup-226-password-123-k3ru/">Rkfree setup 226 password 123</a> - <a class="link" href="/questions/costco-wholesale-value-chain-analysis-f2gr/">Costco wholesale value chain analysis</a> - <a class="link" href="/questions/physiology-of-balance-ppt-vbi7/">Physiology of balance ppt</a> - <a class="link" href="/questions/compound-to-complex-sentence-qtim/">Compound to complex sentence</a> - <a class="link" href="/questions/strategic-audit-lc43/">Strategic audit </a> - <a class="link" href="/questions/space-exploration-through-history-lens-joay/">Space exploration through history lens</a> - <a class="link" href="/questions/axe-street-barking-development-ihd3/">Axe street barking development</a> - <a class="link" href="/questions/assignment-lwcf/">Assignment </a> - <a class="link" href="/questions/software-cost-estimation-ppt-911y/">Software cost estimation ppt</a> - <a class="link" href="/questions/csec-english-sba-reflection-sample-dlsz/">Csec english sba reflection sample</a> - <a class="link" href="/questions/917-kg-in-stone-nql5/">91.7 kg in stone</a> - <a class="link" href="/questions/should-everyone-go-to-college-they-say-i-say-questions-aca2/">Should everyone go to college they say i say questions</a> - <a class="link" href="/questions/visual-reflection-essay-format-aodd/">Visual reflection essay format</a> - <a class="link" href="/questions/ethic-paper-qhzl/">Ethic paper</a> - <a class="link" href="/questions/nurs-6003nurs-6003anurs-6003fnrse-6003cnurs-6003nnurs-6003c-transition-to-graduate-study-for-nursing-qgyf/">NURS 6003/NURS 6003A/NURS 6003F/NRSE 6003C/NURS 6003N/NURS 6003C: Transition to Graduate Study for Nursing</a> - <a class="link" href="/questions/i-need-help-with-a-writing-assignment-in-managerial-301-5uf4/">I need help with a writing assignment in Managerial 301</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>