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
gulaghasi [49]
3 years ago
14

Produce a program using a loop that requests for 8 floating point numbers from a user.once provided the program should calculate

the average of all numbers that are less than 10.5
​
Computers and Technology
1 answer:
kati45 [8]3 years ago
7 0

Answer:

The program in Python is as follows:

total = 0

count = 0

for i in range(8):

   num = float(input())

   if num < 10.5:

       total+=num

       count+=1

print("Average: ",total/count)

Explanation:

This initializes the total to 0

total = 0

This initializes the count to 0

count = 0

This loop is executed 8 times

for i in range(8):

This request for float number

   num = float(input())

If input is less than 10.5

   if num < 10.5:

The sum is taken

       total+=num

And count is incremented by 1

       count+=1

The loop ends here

This calculates and prints the average

print("Average: ",total/count)

You might be interested in
Which two statements give good definitions of financial credit
iren2701 [21]
The two <span>statements that give good definitions of financial credit are :            1) Balance Sheet & 2) Income Statement.  
</span>
1) Balance sheet shows the assets, liabilities, and net worth on a
    given date;
2) Income statement (profit & loss account), shows how the net income of
    the firm is arrived at over a stated period. 
Another statement is Cash flow statement, which shows the inflows and outflows of cash caused by the firm's activities during a given period of time.
3 0
3 years ago
Understanding the context of information allows you to apply it to everyday situations as opposed to just___facts like names,dat
posledela
Dates best choice I would pick it
5 0
3 years ago
A mobile device you are troubleshooting is experiencing a sharp decrease in performance after an hour of operation. The user pow
Finger [1]

Answer: Close or disable all unused running apps.

Explanation: when unused apps keep runningon the device, it will make the device to keep lagging, thereby reducing it efficiency. But once those apps are disabled or closed and the system is probably restarted, the device will regain it efficiency back.

8 0
3 years ago
In order to place a gradient within a stroked path for type, one must convert the type using the __________
Black_prince [1.1K]

Answer:

in order to place a gradient within a stroked path for type ,one must convert the type 17316731

7 0
3 years ago
Write three function prototypes:
Natalka [10]

Answer:

Declaration for function 1:

void printHeading(String heading);

Declaration for function 2:

int yearPage(int currentYear, int birthYear);

Declaration for function 3:

void printable(String [] names, int [] birthDays, int size);

Explanation:

Prototypes of any function includes its return type followed by its name followed by list of arguments used by it enclosed within parenthesis.

Syntax for method declaration:

return_type  function_name (list_of_arguments);

8 0
3 years ago
Other questions:
  • How useful do you find the creation of folders in your computer?
    8·2 answers
  • The strength of the electromagnetic waves being radiated from an antenna is referred to as gain, which involves a measurement of
    9·1 answer
  • Microsoft ____ is the new web browser.
    13·2 answers
  • Dfd symbols are referenced by using all ____ letters for the symbol name.
    9·1 answer
  • Research different ways that 3D printing is used in society. Tell us about the items that are 3D printed.
    8·2 answers
  • How do u reverse image search on Android? ​
    9·1 answer
  • . 。 • ゚ 。 .
    10·2 answers
  • A citizen of any group has both _____ and _____.
    10·1 answer
  • Do companies speed up internet when you run speed test
    13·1 answer
  • Q.3.1 Explain why devices on a network need addresses. (5)​
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!