Geschreven door studenten die geslaagd zijn Direct beschikbaar na je betaling Online lezen of als PDF Verkeerd document? Gratis ruilen 4,6 TrustPilot
logo-home
Tentamen (uitwerkingen)

Practice Exam Questions and Answers ALL ANSWERS 100% CORRECT FALL-2021/2022 SOLUTION GUARANTEED GRADE A+

Beoordeling
4.5
(4)
Verkocht
16
Pagina's
11
Cijfer
A+
Geüpload op
21-12-2021
Geschreven in
2021/2022

Scenario: You have decided to purchase a new car. You plan to take out a loan to pay for the car. The loan amount is $18,900. You will pay an interest rate of 6.5% and plan to pay off the car in 48 months. You want to calculate the total amount of money and the total amount of interest you will pay over the course of the loan. To help you with these calculations, you decide to construct an amortization table. An amortization table provides details about the payment, interest amount, principal amount, and loan balance for every month of the loan. Perform the tasks below to complete the amortization table and loan summary calculations. 1. Calculate the payment amount for the loan in cell C15. Reference the cells containing the appropriate loan information as the arguments for the function you use. Cells C20–C67 in the "Payment" column are populated with the payment amount from cell C15. =PMT(C13/12,C12,C11) 2. Calculate, in cell D20, the interest amount for period 1 by multiplying the balance in period 0 (cell F19) by the loan interest rate (cell C13) divided by 12. Dividing the interest rate by 12 results in the monthly interest rate. This formula is reusable. The interest for a given period is always the monthly interest rate times the balance from the previous period. =F19*0.65/12 3. Copy the interest amount calculation down to complete the "Interest" column of the amortization table. Ctrl + c then double click the bottom right corner 4. Calculate, in cell E20, the principal amount for period 1. The principal amount is the difference between the payment amount (cell C20) and the interest amount (cell D20) for period 1. Construct your formula in such a way that it can be reused to complete the "principal" column of the amortization table. =C20-D20 5. Copy the principal amount calculation down to complete the "principal" column of the amortization table. Ctrl + c then double click the bottom right corner 6. Calculate, in cell F20, the balance for period 1. The balance is the difference between the balance for period 0 (cell F19) and the principal amount for period 1 (cell E20). This formula is reusable. The balance is always calculated as the difference between the balance from the previous period and the principal amount for the current period. =F19-E20:E20 7. Copy the balance amount calculation down to complete the "Balance" column of the amortization table. Ctrl + c then double click the bottom right corner 8. Calculate, in cell G12, the total amount paid by multiplying the payment amount (cell C15) by the term of the loan (cell C12). =C15*C12 9. Calculate the total interest paid in cell G13. The total interest paid is the sum of all interest paid in the "Interest" column of the amortization table. =SUM(D20:D67) 10. Check to see if the total interest calculation in the amortization table is correct. The total interest paid is also equal to the difference between the total amount paid over the course of the loan and the original loan amount. Insert a formula into cell G14 to calculate the difference between the total amount paid and the original loan amount. Notice the negative sign associated with the original loan amount. This value should equal the total interest calculated using the amortization table =G12+C11 11. Assume you have made the first 36 payments on your loan. You want to trade the car in for a new car. You believe that you can sell your car for $4000. Will this cover the balance remaining on the car in period 36? Answer either "Yes" or "No" in cell G15 from the drop-down menu. Yes Four J’s Painting Scenario: Four J's Painting is a home painting contractor that completes interior painting work for new construction projects. Four J's Painting has four employees: Jim, Jill, Jake, and Jennifer. You have been hired to determine how the company can be more efficient and provide better service. You have tracked information on the last 20 painting projects in table 1. Employees receive bonuses for efficient and high-quality work. Occasionally, some jobs require additional work to correct flaws (touch-up work). Information about the projects that required touch-up work is stored in table 2. Table 3 summarizes information about the employees. Table 4 categorizes the projects according to difficulty. Complete tables 1 through 4 to determine how to more efficiently and effectively run the company. Complete each task so that the formulas you use can be copied and pasted down to complete the columns of the tables. Do not name your lookup tables; rather, you should keep them as references (e.g. B16:C30). 1. Use the HLOOKUP function to complete the "Hourly Wage" column of table 1. Use the "Employee" column of table 1 as the lookup value and the "Employee Wage Information" above table 1 as your reference table. =HLOOKUP($D$16:$D$35,$E$11:$H$12,2,FALSE) 2. Use the AND function to complete the "Time Bonus?" column of table 1. An employee earns a time bonus if the project’s "Hours Worked" are fewer than the "Estimated Hours" and if the work "Quality" is greater than 1. =AND(C16E16=TRUE,H161,(AND(E16C16))) 3. Use the OR function to complete the "Outcome Bonus?" column of table 1. An employee earns an outcome bonus if the difficulty of a job is greater than 3 or if the quality of their work is equal to 3. =OR(G163,H16=3) 4. Use the IF function to complete the "Time Bonus $" column of table 1. If an employee earns a time bonus (i.e., the corresponding cell in the "Time Bonus?" column is TRUE), then "Time Bonus $" is the "Job Pay" for that project times the bonus percentage in cell M11. Otherwise "Time Bonus $" is 0. =IF(I16=TRUE,K16*$M$11,0) 5. Use the IF function to complete the "Outcome Bonus $" column of table 1. If an employee earns an outcome bonus (i.e., the corresponding cell in the "Outcome Bonus?" column is TRUE), then "Outcome Bonus $" is the "Job Pay" for that project times the outcome bonus percentage in cell M12; otherwise, "Outcome Bonus $" is 0. =IF(J16=TRUE,K16*$M$12,0) 6. Use the IF function to complete the "Comments" column of table 1. Display "Good Job" if both the "Hours Worked" are less than or equal to the "Estimated Hours" for a project and the assessed "Quality" of that project is greater than 1. Display "Too Much Time" if the "Hours Worked" on a project exceed the "Estimated Hours" for that project; otherwise, display "Poor Quality." =IF(AND(E16=C16,H161),"Good Job",IF(H161,"Poor Quality",IF(E16C16,"Too Much Time","Poor Quality"))) 7. Use the VLOOKUP function to complete the "Employee" column of table 2. Use "Job ID" from table 2 as your lookup_value(s) and table 1 as the reference table. =VLOOKUP(B40,$B$16:$O$35,3,FALSE) 8. Use the VLOOKUP function to complete the "Difficulty" column of table 2. Again, use "Job ID" from table 2 as the lookup_value(s) and table 1 as the reference table. =VLOOKUP(B40,$B$16:$O$35,6,FALSE) 9. Use the COUNTIF function to complete the "# of Jobs" column in table 3. Reference the appropriate field in table 1 as your range and the "Employee" names in table 3 as your criteria. =COUNTIF($D$16:$D$35,G39) 10. Use the SUMIF function to complete the "Total Hours" column in table 3. Reference the appropriate field in table 1 as your range and the "Employee" names in table 3 as your criteria. =SUMIF($D$16:$D$35,G39,$E$16:$E$35) 11. Use the SUMIF function to complete the "Total Pay" column in table 3. Reference the "Employee" field in table 1 as your range, the "Employee" names in table 3 as your criteria, and the "Total Pay" field in table 1 as your sum range. =SUMIF($D$16:$D$35,G39,$N$16:$N$35) 12. Use the COUNTIF function to complete the "# of Touch-ups" column in table 4. Reference the appropriate field in table 2 as your range and the "Difficulty" rating in table 4 as your criteria. =COUNTIF($D$40:$D$46,G46) 13. Use the SUMIF function to complete the "Cost Touch-ups" column in table 4. Reference the appropriate field in table 2 as your range and the "Difficulty" rating in table 4 as your criteria. =SUMIF($D$40:$D$46,G46,$E$40:$E$46) 14. Use the AVERAGEIF function to complete the "Average Hours/Job" column in table 4. Reference the appropriate field in table 1 as your range and the "Difficulty" rating in table 4 as your criteria. =AVERAGEIF($G$16:$G$35,G46,$C$16:$C$35) Google Scenario: Review the tables in the "Google" worksheet that detail the revenue for Google, Inc. from 2003 to 2010. Complete the tasks to construct a column, stacked column, pie, and line chart and to discover patterns or trends in revenue across the eight years. 1. Construct a column chart to examine the total annual revenue for Google, Inc. from 2003 to 2010, using the data in table 1 (range C12:J12). Format the chart with the title "Total Google Revenue" and the years across the horizontal axis. Do not include a legend. Note: in order for the grading engine to identify the chart for grading, the title must be precisely, “Total Google Revenue” (without the quotes). 2. Add a linear trendline to the "Total Google Revenue" chart. 3. Construct a stacked column chart to compare the revenue totals for each year, using the quarterly revenue totals (range C8:J11). Format the chart with the title "Google Revenue by Quarter," the year as the horizontal axis, and a legend that depicts each quarter using the text labels provided in the tables. Do not include the total annual revenue (range C12:J12) in the chart. Note: in order for the grading engine to identify the chart for grading, the title must be precisely, “Google Revenue by Quarter” (without the quotes). 4. Construct a pie chart to compare the business segments for 2010 (range J16:J18). Format the chart with the title "Google Revenue by Business Segment" a legend that depicts each business segment, and data labels with the percentage for each segment on the chart. Note: in order for the grading engine to identify the chart for grading, the title must be precisely, “Google Revenue by Business Segment” (without the quotes). 5. Construct a line chart to examine the total annual revenue for Google, Inc. from 2003 to 2010 (use the data in table 2 - range C19:J19). Format the chart with the title on top "Google Revenue Line" and the years across the horizontal axis. Do not include a legend. Note: in order for the grading engine to identify the chart for grading, the title must be precisely, “Google Revenue Line” (without the quotes). 6. Add a linear trendline to the "Google Revenue Line " chart. Event Profitability Scenario: You are the owner of a small business that manages the program, food, and merchandise sales at the Excel Center, where the local professional basketball team plays. In addition to basketball games, the Excel Center hosts dozens of events a year. Your company handles all sales made inside the arena. There are three major products you sell: programs, food, and merchandise. You have decided to build a spreadsheet model to help you analyze and project the profitability of future events. The "Event Profit" worksheet contains this model. You have randomly selected sales and attendance data from a number of past events to help build your model. This data can be found on the "Past Events" worksheet. You will analyze this data in order to obtain appropriate values to develop the model. Complete the tasks to finish the model. Whenever possible, reference cells rather than hard-coding values in the cells of your worksheet. 1. In the "Input Analysis" section of the spreadsheet model, calculate the average attendance and sales for each type of product from the past events listed in the "Past Events" worksheet. =AVERAGE('Past Events'!C4:C103) 2. In the "Input Analysis" section of the spreadsheet model, calculate the sample standard deviation for attendance and sales for each type of product from the past events listed on the "Past Events" worksheet. (Note for Excel 2007 users: Excel 2007 does not support a specific function to calculate sample standard deviations. Use the STDEV function instead.) =STDEV.S('Past Events'!C4:C103) 3. In the "Input Analysis" section of the spreadsheet model, calculate the 95% confidence interval for the sales for each type of product. (You will not calculate a confidence interval for attendance.) Use the number of events (calculated in cell I3) as part of your calculations. (Note to Excel 2007 users: the CONFIDENCE.NORM function is not supported in Excel 2007. Use the CONFIDENCE function instead.) =CONFIDENCE(0.05,J7,I3) 4. In the "Input Analysis" section of the spreadsheet model, calculate the correlations between the sales of each type of product and event attendance. Use appropriate ranges from the "Past Event" worksheet for your calculations. =CORREL('Past Events'!C4:C103,'Past Events'!E4:E103) 5. The sales for which product type are most highly correlated with attendance? Select the correct answer from the drop-down list in cell L32. Food 6. In the "Input Analysis" section of the spreadsheet model, calculate a sales forecast for each type of product if expected attendance at the future event is 18000 people. Reference cell I13 (the attendance forecast) for your calculations. =FORECAST(I13,'Past Events'!D4:D103,'Past Events'!C4:C103) 7. In the "Input Analysis" section of the spreadsheet model, calculate the upper limit for your sales forecast for each type of product if expected attendance at the future event is 18000 people. Reference the confidence interval you created for your calculation. =I16+J8 8. In the "Input Analysis" section of the spreadsheet model, calculate the lower limit for your sales forecast for each type of product if expected attendance at the future event is 18000 people. Reference the confidence interval you created for your calculation. =I16-J8 9. How likely is it that food sales would exceed $220,000 if attendance is 18,000 people? Select the correct answer from the drop-down list in cell L35. 5% chance 10. In the "Event Profitability A

Meer zien Lees minder
Instelling
Vak









Oeps! We kunnen je document nu niet laden. Probeer het nog eens of neem contact op met support.

Geschreven voor

Instelling
Vak

Documentinformatie

Geüpload op
21 december 2021
Aantal pagina's
11
Geschreven in
2021/2022
Type
Tentamen (uitwerkingen)
Bevat
Vragen en antwoorden

Onderwerpen

$12.49
Krijg toegang tot het volledige document:
Gekocht door 16 studenten

Verkeerd document? Gratis ruilen Binnen 14 dagen na aankoop en voor het downloaden kun je een ander document kiezen. Je kunt het bedrag gewoon opnieuw besteden.
Geschreven door studenten die geslaagd zijn
Direct beschikbaar na je betaling
Online lezen of als PDF

Beoordelingen van geverifieerde kopers

Alle 4 reviews worden weergegeven
3 jaar geleden

Some incorrect answers, no elaborations on two entire sections

3 jaar geleden

3 jaar geleden

3 jaar geleden

4.5

4 beoordelingen

5
3
4
0
3
1
2
0
1
0
Betrouwbare reviews op Stuvia

Alle beoordelingen zijn geschreven door echte Stuvia-gebruikers na geverifieerde aankopen.

Maak kennis met de verkoper

Seller avatar
De reputatie van een verkoper is gebaseerd op het aantal documenten dat iemand tegen betaling verkocht heeft en de beoordelingen die voor die items ontvangen zijn. Er zijn drie niveau’s te onderscheiden: brons, zilver en goud. Hoe beter de reputatie, hoe meer de kwaliteit van zijn of haar werk te vertrouwen is.
Allan100 Rasmussen College
Volgen Je moet ingelogd zijn om studenten of vakken te kunnen volgen
Verkocht
648
Lid sinds
5 jaar
Aantal volgers
605
Documenten
3226
Laatst verkocht
1 week geleden

3.5

92 beoordelingen

5
36
4
17
3
15
2
5
1
19

Recent door jou bekeken

Waarom studenten kiezen voor Stuvia

Gemaakt door medestudenten, geverifieerd door reviews

Kwaliteit die je kunt vertrouwen: geschreven door studenten die slaagden en beoordeeld door anderen die dit document gebruikten.

Niet tevreden? Kies een ander document

Geen zorgen! Je kunt voor hetzelfde geld direct een ander document kiezen dat beter past bij wat je zoekt.

Betaal zoals je wilt, start meteen met leren

Geen abonnement, geen verplichtingen. Betaal zoals je gewend bent via iDeal of creditcard en download je PDF-document meteen.

Student with book image

“Gekocht, gedownload en geslaagd. Zo makkelijk kan het dus zijn.”

Alisha Student

Bezig met je bronvermelding?

Maak nauwkeurige citaten in APA, MLA en Harvard met onze gratis bronnengenerator.

Bezig met je bronvermelding?

Veelgestelde vragen