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
Answer:
Option(a) is the correct answer to the given fill in the blank of #2
Explanation:
The values[indexOfMin] returns the minimum element in the particular array As in the given question we have to implement the selection sorting .In the selection sorting we have choose the element and compare them others minimum index that's why we have choose the values[indexOfMin] function.
- The index of min is not the correct function So we have not used in the given fill in the blanks that's why option(b) is incorrect .
- The values[startIndex] represent the starting index only that is not suitable for the given question that's why it is incorrect option.
Answer:
B
binary numbers
Explanation:
because she does not know what they mean it can be data or information but we are not sure so the best answer is B.
Answer:
Input: Take 3 numbers A, B and C
Processing: Find average of 3 numbers using formula: Average= A+B+C/3
Output: The output is Average of three numbers.
Explanation:
We need to write an algorithm to compute and print out the average of 3 numbers A,B,C
An algorithm has Input, Processing and Output
The algorithm required is:
Input: Take 3 numbers A, B and C
Processing: Find average of 3 numbers using formula: Average= A+B+C/3
Output: The output is Average of three numbers.