Create a table to calculate free-throw percentages. Use IF() functions to prevent an error when no free throws are shot. Format the results using bold for percentages greater than or equal to 75 percent

What will be an ideal response?


Each shot is worth a point; one column will be number of attempts, another can be various points scored using random numbers. Use IF to exclude nonsensical entries and highlight those which are 75% or better averages

Computer Science & Information Technology

You might also like to view...

What will be the value of discountRate after the following statements are executed?

``` double discountRate; char custType = 'B'; switch (custType) { case 'A': discountRate = 0.08; break; case 'B': discountRate = 0.06; case 'C': discountRate = 0.04; default: discountRate = 0.0; } ``` a. 0.08 b. 0.06 c. 0.04 d. 0.0

Computer Science & Information Technology

You can make adjustments directly to pixels on a layer, but you can't go back and re-adjust at a later time.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

The Insert Endnote icon can be found on the Pictures Tools tab

Indicate whether the statement is true or false

Computer Science & Information Technology

A group of formatting commands, such as font, font size, font color, paragraph alignment, and line spacing, that can be applied to selected text with one command

a. Format range b. Style set c. Style

Computer Science & Information Technology