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
egoroff_w [7]
4 years ago
13

Professor Zak allows students to drop the four lowest scores on the ten 100 point quizzes she gives during the semester. Design

an apllication that accepts a student name and 10 quiz scores. Output the students name and total points for the students six highest scoring quizzes
Computers and Technology
1 answer:
lana66690 [7]4 years ago
4 0

Answer:

Explanation:

Let's do this in Python, we will accept 2 arguments, the student name and an array of the 10 scores. The function would sort the scores out, get the last 6 scores, take the sum and finally out put them with the student name:

def total_six_highest_score(name, scores):

    scores.sort()

    highest_six_scores = scores[4:]

    total_highest = sum(highest_six_scores)

    return name, total_highest

You might be interested in
What happens when you press the Enter key at the end of a line of bulleted text?
sladkih [1.3K]

i think the  answer is d

6 0
4 years ago
Read 2 more answers
An operating system coordinates the BLANK of a computers operation.
devlian [24]
I believe it is D. The Central Processing Unit (CPU) can manage memory and storage. It also makes sure every program has what it needs to keep it up and running. 
8 0
3 years ago
Read 2 more answers
Write a setInterval() function that increases the count by 1 and displays the new count in counterElement every 300 milliseconds
Alina [70]

Answer:

  1. var count = 0;
  2. var counterElement = document.getElementById("counter");
  3. counterElement.innerHTML = count;
  4. var a = setInterval(
  5.    function(){  
  6.        count++;
  7.        counterElement.innerHTML = count;
  8.        if(count == 5){
  9.            clearInterval(a);
  10.        }
  11.    }
  12.        , 300);

Explanation:

The solution code is given from Line 6 - 15.  

setInterval function is a function that will repeatedly call its inner function for an interval of time. This function will take two input, an inner function and the interval time in milliseconds.  

In this case, we define an inner function that will increment count by one (Line 8) and then display it to html page (Line 9). This inner function will repeatedly be called for 300 milliseconds. When the count reaches 5, use clearInterval to stop the innerFunction from running (Line 11 - 13).  

8 0
3 years ago
A(n) ________ statement specifies the value that is returned from the function when the function ends.
tia_tia [17]

Answer:

The appropriate answer is "return ". A further explanation is given below.

Explanation:

  • The return seems to be a statement or declaration throughout the programming that instructs a program to consider leaving the subroutine as well as then go up later to either the return address. The return address wherever another subroutine becomes named is found.
  • This statement has either been returning and perhaps return value in certain computer languages.
6 0
3 years ago
A​ _______ helps us understand the nature of the distribution of a data set.
Sphinxa [80]

Frequency distribution
3 0
3 years ago
Other questions:
  • What are two examples of ways an electronic record may be distributed to others?
    15·1 answer
  • What unit is used to describe the smallest amount of bitcoin?
    13·1 answer
  • A ___ is a mobile device that typically ranges from seven to ten inches in size.
    14·1 answer
  • Hank is the network administrator responsible for managing the web server cluster for an e-commerce company. He’s worried about
    9·1 answer
  • 2min speech on can teachers be replace by technology​
    5·1 answer
  • What is data and imformation?​
    6·1 answer
  • I'm asking more questions for help with schoolwork, thank you for the help, giving Brainliest.
    6·1 answer
  • Effective online learning method for students
    5·1 answer
  • What types of company functions are aided by ERP?
    9·1 answer
  • explain the following joke: “There are 10 types of people in the world: those who understand binary and those who don’t.”
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!