Question

J11 A B C F G H | M N O P C 1 The athletic department is sponsoring a free throw contest before tonights game to glve away f- Use the COUNTIF function in cell I10 to determine the number of students with black hair. Be sure to build a formula can be reused by copying down.

- Copy your function in cell I10 and paste it down to complete the "Count" column of the "Hair Color Summary" table.

- Use the COUNTIF function in cell I17 to determine the number of students with brown eyes.  Be sure to build a formula can be reused by copying down.

- Copy your function in cell I17 and paste it down to complete the "Count" column of the "Eye Color Summary" table.

0 0
Add a comment Improve this question Transcribed image text
✔ Recommended Answer
Answer #1

The parts which needs to be solved as per the question requirements are given as follows:

- The cell I10 of the hair color summary table can be filled with the following formula as follows:

I10 =COUNTIF($C$9:$C$308, H10)

Copy the part of the above formula which is highlighted as bold and paste it into the cell I10. Press enter to see the results:

X for =COUNTIF($C$9:$C$308, H10) C D E F G H I J K L The athletic department is sponsoring a free throw contest before tonigh

- The column Count of the hair color summary table can be filled by copying the formula of cell I10 and paste it down to the complete column (Count). The result of this table is shown as follows:

110 * for -COUNTIF($C$9:$C$308, H10) D E F A B C G H KL The athletic department is sponsoring a free throw contest before ton

- The cell I17 of the eye color summary table can be filled with the following formula as follows:

I17 =COUNTIF($D$9:$D$308, H17)

Copy the part of the above formula which is highlighted as bold and paste it into the cell I17. Press enter to see the results:

X fx =COUNTIF($D$9:$D$308, H17) B C D E F G H I J The athletic department is sponsoring a free throw contest before tonights

- The column Count of the eye color summary table can be filled by copying the formula of cell I17 and paste it down to the complete column (Count). The result of this table is shown as follows:

117 =COUNTIF($D$9:$D$308, H17) D E F G H I J K L The athletic department is sponsoring a free throw contest before tonights

The following parts of the solution are given to fill the tables completely given in the question.

The cell J10 of the hair color summary table can be filled with the following formula as follows:

J10 =SUMIF($C$9:$C$308, H10, $E$9:$E$308)

Copy the part of the above formula which is highlighted as bold and paste it into the cell J10. Press enter to see the results:

J10 for SUMIF($C$9:$C$308, H10, $E$9:$E$308) E F G A B C D H J K L The athletic department is sponsoring a free throw contest

The column Sum of the hair color summary table can be filled by copying the formula of cell J10 and paste it down to the complete column (Sum). The result of this table is shown as follows:

J10 for SUMIF($C$9:$C$308, H10, $E$9:$E$308) E F G A B C D H J K L The athletic department is sponsoring a free throw contest

The cell J17 of the eye color summary table can be filled with the following formula as follows:

J17 =SUMIF($D$9:$D$308, H17, $E$9:$E$308)

Copy the part of the above formula which is highlighted as bold and paste it into the cell J17. Press enter to see the results:

J17 1 x fc =SUMIF($D$9:$D$308, H17, $E$9:$E$308) A B C D E F G H | | | The athletic department is sponsoring a free throw con

The column Sum of the eye color summary table can be filled by copying the formula of cell J17 and paste it down to the complete column (Sum). The result of this table is shown as follows:

J17 x fc - A =SUMIF($D$9:$D$308, H17, $E$9:$E$308) D E F G B C H KL The athletic department is sponsoring a free throw contes

The cell K10 of the hair color summary table can be filled with the following formula as follows:

K10 =AVERAGEIF($C$9:$C$308, H10, $E$9:$E$308)

Copy the part of the above formula which is highlighted as bold and paste it into the cell K10. Press enter to see the results:

K10 - X Foc AVERAGEIF($C$9:$C$308, H10, $E$9:$E$308) A B C D E F G H J K The athletic department is sponsoring a free throw c

The column Average of the hair color summary table can be filled by copying the formula of cell K10 and paste it down to the complete column (Average). The result of this table is shown as follows:

K10 - x x =AVERAGEIF($C$9:$C$308, H10, $E$9:$E$308) в C D E F G H I J KL The athletic department is sponsoring a free throw c

The cell K17 of the eye color summary table can be filled with the following formula as follows:

K17 =AVERAGEIF($D$9:$D$308, H17, $E$9:$E$308)

Copy the part of the above formula which is highlighted as bold and paste it into the cell K17. Press enter to see the results:

K17 X for AVERAGEIF($D$9:$D$308, H17, $E$9:$E$308) B C D E G H к The athletic department is sponsoring a free throw contest b

The column Average of the eye color summary table can be filled by copying the formula of cell K17 and paste it down to the complete column (Average). The result of this table is shown as follows:

K17 - X f V C =AVERAGEIF($D$9:$D$308, H17, $E$9:$E$308) E F G H. A B D J K L The athletic department is sponsoring a free thr

The cell F9 can be filled with the following formula as follows:

F9 =OR(C9 = "Red", D9 = "Hazel")

Copy the part of the above formula which is highlighted as bold and paste it into the cell F9. Press enter to see the results:

- x fc =OR(C9 = Red, D9 = Hazel) E F A B C D G H J K L The athletic department is sponsoring a free throw contest before

The highest average in the table hair color summary is 6.50 of the red color hair students and the highest average in the table eye color summary is 5.63 of the hazel color eye students.

The cell F9 (Get Shirt?) will be true if the cell C9 (Hair Color) is Red or cell D9 (Eye Color) is Hazel, otherwise it will be false.

The column Get Shirt? of the table 1 can be filled by copying the formula of cell F9 and paste it down to the complete column (Get Shirt?). The result of this table is shown as follows:

- x fc =OR(C9 = Red, D9 = Hazel) E F в C D G H I J The athletic department is sponsoring a free throw contest before toni

The cell K22 (How many students will get a shirt?) can be filled with the following formula as follows:

K22 =COUNTIF($F$9:$F$308, TRUE)

Copy the part of the above formula which is highlighted as bold and paste it into the cell K22. Press enter to see the results:

K22 X for =COUNTIF($F$9:$F$308, TRUE) A B C D E F G H I J K The athletic department is sponsoring a free throw contest before

Count the number of students whose value in the column Get Shirt? is TRUE. The result of this formula will be the number of students getting a shirt.

Add a comment
Know the answer?
Add Answer to:
- Use the COUNTIF function in cell I10 to determine the number of students with black...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Similar Homework Help Questions
  • - Use the COUNTIF function in cell I10 to determine the number of students with black hair. Be sure to build a formula c...

    - Use the COUNTIF function in cell I10 to determine the number of students with black hair. Be sure to build a formula can be reused by copying down.- Copy your function in cell I10 and paste it down to complete the "Count" column of the "Hair Color Summary" table.- Use the COUNTIF function in cell I17 to determine the number of students with brown eyes.  Be sure to build a formula can be reused by copying down.- Copy your function...

  • Use the SUMIF function in cell J10 to determine the total number of free throws made...

    Use the SUMIF function in cell J10 to determine the total number of free throws made by students with black hair. Use the SUMIF function in cell J17 to determine the total number of free throws made by students with brown eyes. Use the AVERAGEIF function in cell K10 to determine the average number of free throws made by students with black hair. Use the AVERAGEIF function in cell K17 to determine the average number of free throws made by...

  • Use the SUMIF function in cell J10 to determine the total number of free throws made...

    Use the SUMIF function in cell J10 to determine the total number of free throws made by students with black hair. Use the SUMIF function in cell J17 to determine the total number of free throws made by students with brown eyes. Use the AVERAGEIF function in cell K10 to determine the average number of free throws made by students with black hair. Use the AVERAGEIF function in cell K17 to determine the average number of free throws made by...

  • Use our class áat to do the foloving problems Be nest and o se our class data to do the f Do the hypothesis tests on separate paper. Due at or before 1. (Ch.11) Using our class data: test t...

    Use our class áat to do the foloving problems Be nest and o se our class data to do the f Do the hypothesis tests on separate paper. Due at or before 1. (Ch.11) Using our class data: test the claim that the proportion of Cabrillo students who are dog owners is greater than proportion for testing are satisfied here. of Cabrillo students who are cat owners. Assume that all requirements 5 points) 2. (Ch.12.1) A research study from 1990...

  • Assignment Instructions In cell B10, use the COUNTIF function to count the number of Specialty pl...

    Assignment Instructions In cell B10, use the COUNTIF function to count the number of Specialty plant types in the Category column. 9 In cell H13, type Stock Level. In cell H14, enter an IF function to determine the items that must be ordered. If the Quantity in Stock is less than 50, the Value if true is Order. Otherwise the Value if false is OK. Fill the formula down through cell H42. 10 Apply Conditional Formatting to the Stock Level...

  • 69. THE ENDOSPORE itself is might to stain_?_ color in an ACID FAST stain. (a) HOT...

    69. THE ENDOSPORE itself is might to stain_?_ color in an ACID FAST stain. (a) HOT pink (c) purple (d) green (e) baby-blue 70. All STAINS begin with a properly prepared _?_ . (a) dye (b) slide (c) smear (d) dog (e) cat 71. Which of the following is an ENDOTOXIN found in some microbes? This is results in fever, blood vessel dilation and possibly SHOCK when it is released into the human blood stream? (a) the plasma membrane (b)...

  • Mountain Paths (Part 1) Objectives 2d arrays Store Use Nested Loops Parallel data structures (i.e...

    Mountain Paths (Part 1) in C++ Objectives 2d arrays Store Use Nested Loops Parallel data structures (i.e. parallel arrays … called multiple arrays in the zyBook) Transform data Read from files Write to files structs Code Requirements Start with this code: mtnpathstart.zip Do not modify the function signatures provided. Do not #include or #include Program Flow Read the data into a 2D array Find min and max elevation to correspond to darkest and brightest color, respectively Compute the shade of...

  • While reading the story, consider the culture (or sub culture) and related communication styles the story...

    While reading the story, consider the culture (or sub culture) and related communication styles the story reveals. Consider too, possibly, the values, behavioral norms, social practices, social artifacts, etc. After reading the story through the lens of this idea, please compose a full academic length (evidence-based 7 to 11 sentence long) paragraph which addresses the following prompt: What does the story reveal about the culture it portrays and/OR the communication styles the culture shares? In other words, what does the...

  • 100. Flare is: (a) the widest frequency of light that can enter an objective (b) the...

    100. Flare is: (a) the widest frequency of light that can enter an objective (b) the bending of light as it passes through different substances (c) wavelength/2NA (d) when the beam of light "spreads" wider than the objective's "hole" (e) wavelengths of light too short to enter the objective 101. Coccobacillus shaped bacteria are considered to be_?_ (a) cocci (b) bacilli (c) diplobacilli (d) diplococci (e)answers a and b only 102. This microscope is used for cheap and quick "'diagnosis"...

  • microbiology help TOT Zoo Add Page Insert Table Chart Text Shape Media Comment These questions will...

    microbiology help TOT Zoo Add Page Insert Table Chart Text Shape Media Comment These questions will serve in lieu of a lab report for Exercise 15, 16, and 17 You will find the answer to these questions in the background, procedure, results and interpretation sections of manual Exercise 15, 16, and 17, videos, Actions of Selective and Differential Media Chart, and the Principle/Theory article in homework section.) General Questions 1. What is the purpose (function) of selective media? (How does...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT