Question

In: Computer Science

You work in the Admissions Office for a small regional university in Massachusetts Your assistant entered...

You work in the Admissions Office for a small regional university in Massachusetts Your assistant entered a list of college applicants for the Fall 2021 semester. You determine if a student qualifies for early admission or early rejection based on SAT and GPA. After determining the immediate admissions and rejections, you calculate a total score based on SAT and GPA to determine regular admissions and rejections.

1

Start Excel. Download and open the file named Exp19_Excel_Ch07_ML1_Admissions.xlsx. Grader has automatically added your last name to the beginning of the filename.

2

First, you want to calculate the number of days between the Initial Deadline and the Date Received.

In cell D11, insert the DAYS function using the Initial Deadline that is stored in cell B8 and the Date Received that is stored in cell C11. Use mixed and relative references correctly.

3

Copy the DAYS function from cell D11 to the range D12:D67. A negative value indicates the application was received after the initial deadline.

4

Next, you want to determine if a student should be admitted early.

In cell G11, insert the IF function with a nested AND function to display either Yes or No in the Admit Early column. The university admits a student early if that student meets both the Early Admission criteria for the SAT (cell B3) and GPA (cell B4). That is, the student’s SAT score must be 1400 or higher, and the GPA must be 3.80 or higher. Use relative and mixed references to the cells in the Admission Criteria range. Based on the requirements, the first student, 2020005, will be admitted early.

5

Now that you determined which students are admitted early, you want to determine if a student should be rejected early.

In cell H11, enter the IF function with a nested OR function to display either Yes or No in the Reject Early column. The university rejects a student early if that student has either an SAT score less than 800 (cell C3) or a GPA below 1.80 (cell C4). Use relative and mixed references to the cells in the Admission Criteria range.

6

Use column I to calculate an applicant's admission score.

In cell I11, enter a formula to calculate an applicant’s admission score. Multiply the GPA (cell F11) by the multiplier (cell B7) and then add that result to the SAT score (cell E11). The first score is 3925. Use relative and mixed references appropriately.

7

In column J, you want to display Early Admission, Early Rejection, Admit, or Reject, respectively, to indicate the final decision.

In cell J11, enter the IFS function. If Admit Early is Yes, display the text Early Admission. If Reject Early is Yes, display the text Early Rejection. If the score is greater than the threshold score in cell B6, display Admit. If the score is less than or equal to the threshold score in cell B6, display Reject. Use mixed reference to cell B6.

8

You are ready to copy the formulas down their respective columns.

Copy the formulas down the Admit Early, Reject Early, Score, and Final Decision columns.

9

You want to enter formulas in the Summary Data section to summarize key points. First, you want to determine the number of Early Admissions and the number of Admits.

In cell H3, insert the COUNTIF function to count the number of Early Admissions in the range J11:J67. Use mixed reference for the Range argument and use cell E3 as the condition. Copy the function to cell H4. It should adjust automatically to count the number of Admit in the range J11:J67.

10

Next, you want to calculate the average SAT score for Early Admissions.

In cell I3, enter the AVERAGEIF function to calculate the average SAT score in the range E11:E67 where Final Decisions in the range J11:J67 are Early Admission. Use mixed references so that the row numbers in the ranges do not change when copied down. Use a relative reference to cell E3 for the condition.

11

You want to calculate the average GPA score for Early Admissions.

In cell J3, insert the AVERAGEIF function to calculate the average GPA in the range F11:F67 where Final Decisions in the range J11:J67 are Early Admission. Use mixed references so that the row numbers in the ranges do not change when copied down. Use a relative reference to cell E3 for the condition.

12

Apply Number format with zero decimal places to cell I3. Then, copy the functions in the range I3:J3 to the range I4:J4.

13

You want to count the number of applications that meet two conditions.

In cell H5, insert the COUNTIFS function to count the total number of applications that meet
two conditions: Scores in the range I11:I67 are greater than or equal to 3500 and Final Decisions in the range J11:J67 are Early Admissions (cell E3).

14

You want to count the number of applications that meet two more conditions.

In cell H6, insert the COUNTIFS function to count the number of applications that meet
two conditions: Residences in the range B11:B67 are In State and Final Decisions in the
range J11:J67 are Early Admissions (cell E3).

15

You want to identify the highest score based on two conditions.

In cell H7, insert the MAXIFS function to identify the highest score in the range I11:I67 that meets two conditions: Residences in the range B11:B67 are In State and Final Decisions in the range J11:J67 are Early Admissions (E3).

16

In cell H8, insert the AVERAGEIFS function to calculate the average score in the range I11:I67 that meets two conditions: Residences in the range B11:B67 are In State and Final Decisions in the range J11:J67 are *Adm*. Use the asterisks as wildcards so that it includes both Early Admission and Admit.

17

In cell I5, insert the AVERAGEIFS function to calculate the average SAT score that meets two conditions: Scores in the range I11:I67 are greater than or equal to 3500 and Final Decisions in the range J11:J67 are Early Admissions (cell E3). Use mixed references appropriately.

18

In cell I6, insert the AVERAGEIFS function to calculate the average SAT score that meets two conditions: Residences in the range B11:B67 are In State and Final Decisions in the range J11:J67 are Early Admissions (cell E3). Use mixed references appropriately.

19

Copy the functions from the range I5:I6 to the range J5:J6.

20

You want to insert a map that depicts admissions by state.

Display the Map worksheet. Create a map chart from the range A1:B5. Change the chart title to Admissions by State. Display the Format Data Series task pane and select Only regions with data as the map area.

21

You want to place the top-left corner of the map in cell C1 and change the map size.

Cut the map and paste it in cell C1. Set 3.12" height and 3.26" width for the map.

22

Create a footer with your name on the left side, the sheet name code in the center, and the file name code on the right side on all sheets.

23

Save and close Exp19_Excel_Ch07_ML1_Admissions.xlsx. Exit Excel. Submit the file as directed.

Solutions

Expert Solution

Since the excel format has not been provided, there would be some difference in values like Multiplier and column headings.

2) First, you want to calculate the number of days between the Initial Deadline and the Date Received.

Ans: Days are calculated by subtracting the Date Received from Initial deadline

=B$8-C11 (B$8 is mixed reference to Intial deadline) and C11 is the relative reference to Date received for first record.

3) Copy the DAYS function from cell D11 to the range D12:D67. A negative value indicates the application was received after the initial deadline.

Ans: Copy the function from D11 till D67, and since there is mixed and relative reference formula would change automaticlly.

4) Next, you want to determine if a student should be admitted early.

In cell G11, insert the IF function with a nested AND function to display either Yes or No in the Admit Early column. The university admits a student early if that student meets both the Early Admission criteria for the SAT (cell B3) and GPA (cell B4). That is, the student’s SAT score must be 1400 or higher, and the GPA must be 3.80 or higher. Use relative and mixed references to the cells in the Admission Criteria range. Based on the requirements, the first student, 2020005, will be admitted early.

Ans: =IF(AND(E11>B$3, F11>B$4),"Yes","No")

5) Now that you determined which students are admitted early, you want to determine if a student should be rejected early.

In cell H11, enter the IF function with a nested OR function to display either Yes or No in the Reject Early column. The university rejects a student early if that student has either an SAT score less than 800 (cell C3) or a GPA below 1.80 (cell C4). Use relative and mixed references to the cells in the Admission Criteria range.

Ans: =IF(OR(E11<C$3, F11<C$4),"Yes","No")

6) Use column I to calculate an applicant's admission score.

In cell I11, enter a formula to calculate an applicant’s admission score. Multiply the GPA (cell F11) by the multiplier (cell B7) and then add that result to the SAT score (cell E11). The first score is 3925. Use relative and mixed references appropriately.

Ans: Since multiplier value was not given, I have assumed it to be 500 and it is mentioned in cell B7

=F11*B$7+E11

7) In column J, you want to display Early Admission, Early Rejection, Admit, or Reject, respectively, to indicate the final decision.

In cell J11, enter the IFS function. If Admit Early is Yes, display the text Early Admission. If Reject Early is Yes, display the text Early Rejection. If the score is greater than the threshold score in cell B6, display Admit. If the score is less than or equal to the threshold score in cell B6, display Reject. Use mixed reference to cell B6

Ans: Use IFS as below

=IFS(G11="Yes","Early Admission", H11="Yes", "Early Rejection",I11>B$6,"Admit",I11<=B$6,"Reject")

8) You are ready to copy the formulas down their respective columns.

Copy the formulas down the Admit Early, Reject Early, Score, and Final Decision columns

Ans: Since all formulas are using mixed or relative references, so the formula can be dragged as is to all rows.

9) You want to enter formulas in the Summary Data section to summarize key points. First, you want to determine the number of Early Admissions and the number of Admits.

In cell H3, insert the COUNTIF function to count the number of Early Admissions in the range J11:J67. Use mixed reference for the Range argument and use cell E3 as the condition. Copy the function to cell H4. It should adjust automatically to count the number of Admit in the range J11:J67.

Ans: =COUNTIF(J$11:J$67,E3)

Copy the formula from H3 to H4 and references change automatically

as =COUNTIF(J$11:J$67,E4)

10) Next, you want to calculate the average SAT score for Early Admissions.

In cell I3, enter the AVERAGEIF function to calculate the average SAT score in the range E11:E67 where Final Decisions in the range J11:J67 are Early Admission. Use mixed references so that the row numbers in the ranges do not change when copied down. Use a relative reference to cell E3 for the condition.

Ans: =AVERAGEIF(J$11:J$67,E3,E$11:E$67)

11) You want to calculate the average GPA score for Early Admissions.

In cell J3, insert the AVERAGEIF function to calculate the average GPA in the range F11:F67 where Final Decisions in the range J11:J67 are Early Admission. Use mixed references so that the row numbers in the ranges do not change when copied down. Use a relative reference to cell E3 for the condition.

Ans: =AVERAGEIF(J$11:J$67,E3,F$11:F$67)

12) Apply Number format with zero decimal places to cell I3. Then, copy the functions in the range I3:J3 to the range I4:J4.

Ans: Right click the cell I3 and select Format Cells. Choose format as Number and change decimal to 0.

Copy formula from I3 to I4 and J3 to J4

so I4 has =AVERAGEIF(J$11:J$67,E4,E$11:E$67)

and J4 has =AVERAGEIF(J$11:J$67,E4,F$11:F$67)

13) You want to count the number of applications that meet two conditions.

In cell H5, insert the COUNTIFS function to count the total number of applications that meet
two conditions: Scores in the range I11:I67 are greater than or equal to 3500 and Final Decisions in the range J11:J67 are Early Admissions (cell E3).

Ans: =COUNTIFS($I$11:$I$67,">=3500",$J$11:$J$67,E3)


Related Solutions

Assume you work as an assistant accountant in the head office of Netflix. With the increasing...
Assume you work as an assistant accountant in the head office of Netflix. With the increasing popularity of online movie streaming, your company has struggled to meet its earnings targets for the year due to the high cost of creating programming content unique to your company. It is important for the company to meet its earnings target this year because the company is renegotiating a bank loan next month that is necessary for international expansion, and the terms of that...
The admissions office of a small college is asked to accept deposits from a number of...
The admissions office of a small college is asked to accept deposits from a number of qualified prospective freshmen so that, with probability about 0.95, the size of the freshman class will be less than or equal to 1,100. Suppose the applicants constitute a random sample from a population of applicants, 80% of whom would actually enter the freshman class if accepted. (Use the normal approximation.) (a) How many deposits should the admissions counselor accept? (Round your answer up to...
You are working as an assistant in a design office. A developer in your local area...
You are working as an assistant in a design office. A developer in your local area has contacted your company looking for advice as to what would be a suitable project to meet the needs of the local community but also be a profitable investment. The developer is considering a number of different sites in the area. please research your local area(Hong Kong) and select an appropriate construction-based project. Topic:Minimising risk through design and specification P8 Utilise appropriate forms of...
You work at an auto insurance company. The national office sends your office a report that...
You work at an auto insurance company. The national office sends your office a report that states that the average auto accident insurance claim is $1,200, and the population stan- dard deviation is $250. You take a sample of 20 claims filed through your office and find a mean of $1,450. Use the 0.1 level of significance and determine if your claims are higher than the national average. Use the five-step procedure to answer the question and include the p-value.
Define and defend your own position on the University of Texas/Texas A& M admissions policy of...
Define and defend your own position on the University of Texas/Texas A& M admissions policy of granting admission to the Top 7-8% of students from Texas High Schools.
You have reviewed the work performed by your assistant, Raymond Snow, on the audit of Tin...
You have reviewed the work performed by your assistant, Raymond Snow, on the audit of Tin Ltd for the year ended 30 June 20X8 and you have noted the following two independent matters: (i) In testing investments in listed securities, Raymond selected all shareholdings with a market value above $200,000 and checked them to the closing market value reported by the Australian Stock Exchange (ASX) to determine the net realisable value of each shareholding. The items tested totaled $5,500,000 or...
You have reviewed the work performed by your assistant, Raymond Snow, on the audit of Tin...
You have reviewed the work performed by your assistant, Raymond Snow, on the audit of Tin Ltd for the year ended 30 June 2008 and have noted the following two independent matters:       In testing investments in listed securities, Raymond selected all shareholdings with a market value above $200,000 and checked them to the closing market value reported by the Australian Stock Exchange to determine the net realisable value of each shareholding. The items tested totalled $5,500,000 or 60% of...
You have reviewed the work performed by your assistant, Raymond Snow, on the audit of Tin...
You have reviewed the work performed by your assistant, Raymond Snow, on the audit of Tin Ltd for the year ended 30 June 20X8 and you have noted the following two independent matters: (i) In testing investments in listed securities, Raymond selected all shareholdings with a market value above $200,000 and checked them to the closing market value reported by the Australian Stock Exchange (ASX) to determine the net realisable value of each shareholding. The items tested totaled $5,500,000 or...
Ken is a self-employed architect in a small firm with four employees: himself, his office assistant,...
Ken is a self-employed architect in a small firm with four employees: himself, his office assistant, and two drafters, all of whom have worked for Ken full-time for the last four years. The office assistant earns $40,000 per year and each drafter earns $60,000. Ken’s net earnings from self-employment (after deducting all expenses and one-half of self-employment taxes) are $330,000. Ken is considering whether to establish an SIMPLE plan and has a few questions. Is he eligible to establish an...
You work as an accountant for regional CPA firm of Cash and Green. Your supervisor asked...
You work as an accountant for regional CPA firm of Cash and Green. Your supervisor asked you to conduct research for three unrelated clients. 1.Hester Company is planning this year to present comparative income statements but only the current year’s balance sheet. Devin, president of Hester Company requests your advice as to whether comparative cash flow statements for both the current and prior periods are necessary considering only the current year’s balance sheet is presented. Are there any authoritative pronouncements...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT