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
mixas84 [53]
3 years ago
8

In python:

Computers and Technology
1 answer:
Misha Larkins [42]3 years ago
6 0

Answer:

Following are the code to this question:

list_val = input()#defining a integer variable for input value

test_grades = list(map(int, list_val.split()))#defining test_grades as a list

sum_extra = -999 #defining sum_extra that holds negative integer value

sum_extra = 0#defining sum_extra that holds value

for y in range(len(test_grades)):#defining a for loop to check range of list  

   if(test_grades[y] > 100):# defining if block that check list value is greater then 100

       sum_extra = sum_extra + (test_grades[y] - 100)#use sum_extra variable to hold extra value and add this value

print('Sum extra:', sum_extra)#print value

Output:

101 83 107 90

Sum extra: 8

Explanation:

In the above code a, "list_val" variable is declared, that uses an input method to input the values and declared a "test_grades" variable that uses a list method to add all values in the list.

In the next step, the "sum_extra" variable is declared, which holds some values and defines a for loop to check the range of the "test_grades", and define a if block, that checks list value is greater than 100. If the condition is true, it will remove the extra value, and add it into the sum_extera variable and add its value, and at the last use, print variable to print its value.

You might be interested in
Joe sends a scathing e-mail to his boss regarding increased work hours. Joe tries to deny sending the e-mail, but is unable to d
Crank

Answer:

The answer is E, which is Nonrepudiation

Explanation:

Nonrepudiation is the confidence attached to the fact that someone cannot deny something. It directs to the ability to ensure that a party to a contract or a communication cannot deny the authenticity of their signature on a document or the sending of a message that they originated.

3 0
2 years ago
What can be designed to create annoying glitches or destoey data?...
daser333 [38]

WELL YOU ARE RIGHT its virus

hope it helps

3 0
3 years ago
Read 2 more answers
8.9 Code Practice
jolli1 [7]

Answer: Here you go, change it however you like :)

Explanation:

v = [24, 20, 29, 32, 34, 29, 49, 46, 39, 23, 42, 24, 38]

usr = int(input("Enter number: "))

print(f"Index: {v.index(usr)}") if usr in v else print(-1)

5 0
2 years ago
Read 2 more answers
Write a program that allows the user to enter three separate strings: a city name, a state name, and a ZIP code.
shepuryov [24]

Answer:

In Python:

city = input("Enter a city: ")

state = input("Enter a state: ")

zip_code = input("Enter a zip code: ")

4 0
2 years ago
Match the keyword to its definition. 1 . Pixel A device that is not central to the operations of a computer 2 . Peripheral Stand
photoshop1234 [79]

Answer:

1 . Pixel:  Smallest element of a picture on a computer display.

2 . Peripheral: A device that is not central to the operations of a computer.

3 . Small computer system interface: Interface for computer device that has its own control function

4 . Input: Devices that take information from the computer user and deliver it to the processor

5 . electrostatic discharge: The instantaneous flow of electricity between two objects when they touch

6 . storage: Devices like hard drives or floppy disks that store data .

7 . Integrated drive electronics: Standard that addresses the physical connection and transfer speed between a computer and a peripheral device

8 . Bluetooth: A wireless technology that uses radio waves to transmit data across short distances.

9 . Output: Devices that take information from the processor and deliver it to the computer user

10 . Megabits per second: Measurement of the speed of data transfer

4 0
3 years ago
Other questions:
  • Write multiple if statements. if caryear is 1969 or earlier, print "probably has few safety features." if 1970 or higher, print
    6·1 answer
  • Which tab is used to edit objects on the slide master and layouts
    10·1 answer
  • Provide a brief, high-level description of how the Internet’s connection-oriented service provides reliable transport.
    14·1 answer
  • With ______________, the cloud provider manages the hardware including servers, storage, and networking components. The organiza
    6·1 answer
  • 8.7 Code Practice: Question 2 edhesive
    14·2 answers
  • What is the primary cause of the industrial revolution?
    12·1 answer
  • Answer all of the questions,
    7·1 answer
  • A company is looking for an employee to help organize customer information for the sales team. Which computer field includes thi
    15·2 answers
  • PLEASE HELP ME
    11·1 answer
  • Write a python program to check whether the number is divisible by 7. If its divisible, print its divisible otherwise find previ
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!