1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
lys-0071 [83]
3 years ago
12

A college team's BCS football ranking is comprised of three elements:1) the Harris Poll score, 2) the Coaches Poll score, and 3)

a computer ranking. Each of these counts as one-third of the final BCS ranking.
The Harris Poll score is obtained by dividing the Harris Poll ranking by 2,850, which is the max- imum number of points any team can receive if all 114 voting members rank the same team as number 1.

The Coaches Poll score is obtained by dividing the Coaches Poll ranking by 1,475, which is the maximum number of points any team can receive if all 59 voting members rank the same team as number 1.

The computer ranking is calculated by some magical formula that won't concern us. We do know, however, that it falls between 0 and 1.

Required:
Write a program to calculate BCS scores for college football teams. Prompt a user for a team's Harris Poll ranking (an integer between 1 and 2,850), ts team's Coaches Poll ranking (an integer between 1 and 1,475), and its computer ranking (a float between 0 and 1). Your program should include
Computers and Technology
1 answer:
artcher [175]3 years ago
6 0

Answer:

harris_poll_ranking = int(input("Enter team's Harris Poll ranking [1 - 2,850]: "))

coaches_poll_ranking = int(input("Enter team's Coaches Poll ranking [1 - 1,475]: "))

computer_ranking  = float(input("Enter team's computer ranking  [0 - 1]: "))

harris_poll_score = harris_poll_ranking / 2850

coaches_poll_score = coaches_poll_ranking / 1475

bcs_score = harris_poll_score / 3 + coaches_poll_score / 3 + computer_ranking / 3

print(bcs_score)

Explanation:

*The code is in Python.

Ask the user to enter the  harris_poll_ranking as int, coaches_poll_ranking as int and computer_ranking as float

Calculate the harris_poll_score, divide the harris_poll_ranking by 2850

Calculate the coaches_poll_score, divide the coaches_poll_ranking by 1475

Calculate the bcs_score, harris_poll_score, coaches_poll_score and computer_ranking by 3 and sum them

Print the bcs_score

You might be interested in
If several programs or apps are running simultaneously, your computer or device might use up its
kirill [66]

Answer: I am pretty sure it's RAM

Explanation:

I'm not 100% positive bc I haven't gotten my scores back yet but I think that's it.

7 0
3 years ago
Suppose a program takes 1000 machine instructions to run from start to end, and can do that in 10 microseconds when no page faul
Tema [17]

Answer:

(10^6 + 9.9)

Explanation:

Given:

Total number of machine instructions = 1000

Number of page fault in 100 instructions = 1

Number of page faults in 1000 instructions = 10

Time to serve one page fault = 100 milliseconds

Time to serve ten page faults = 100*10 milliseconds = 1000 milliseconds = 10^6 Microseconds

Number of instructions without any page fault = 1000 - 10 = 990

Time required to run 1000 instructions = 10 Microseconds

So, time required to run 990 instructions = (10*(990/1000)) Microseconds = 9.9 Microseconds

So, the total time required to run the program = (10^6 + 9.9) Microseconds

3 0
3 years ago
Can anybody answer this please hurry
Ludmilka [50]

Answer:

Ada Lovelace

The first one!

Hope this helps!

5 0
3 years ago
Read 2 more answers
What is the answer to the question
nirvana33 [79]

Answer:

B. H1

Explanation:

H1 is the largest header in the hierarchy. H6 is the smallest.

4 0
3 years ago
Read 2 more answers
One example of a Microsoft Store app is Select one: a. Photos. b. Paint. c. File Explorer. d. Notepad.
amid [387]

Answer:

b. Paint

Explanation:

Paint was one of Microsoft's application that allowed users to draw basic diagrams and visual representation of objects. Microsoft Paint was discontinued as an addition in the latest versions of Windows, however the app is available for download from Microsoft Store App. Photos is an application of Apple, whereas File Explorer and Notepad are default applications of Windows operating system.

3 0
3 years ago
Other questions:
  • Which framework can be used to develop cross-platform applications?
    13·1 answer
  • What should not be compromised when trying to meet standards and deadlines?
    12·1 answer
  • .How does kinetic energy affect the stopping distance of a vehicle traveling at 30 mph compared to the same vehicle traveling at
    13·1 answer
  • All living organisms make up the (4 points)
    8·1 answer
  • Which service risks our every move and routine being tracked?
    13·1 answer
  • Who was the creator of the game Fnaf?
    11·2 answers
  • A form letter can be customized by using different fields in a __________.
    15·2 answers
  • Write an if-else statement for the following: If user_tickets is less than 5, assign 1 to num_tickets. Else, assign user_tickets
    6·1 answer
  • The NVCC college professor receives frequent emails disguised as official business emails. They may be requests to reset a passw
    10·2 answers
  • I WILL GIVE THE CROWN IF CORRECT
    5·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!